11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
|
|
||
|
|
||
|
/**
|
||
|
* This class is intended as a placeholder for utility methods unrelated
|
||
|
* to actual classes of the game system or of FoundryVTT
|
||
|
*/
|
||
|
export class Misc {
|
||
|
static _upperFirst(text) {
|
||
|
return text.charAt(0).toUpperCase() + text.slice(1);
|
||
|
}
|
||
|
}
|