refactor: substr -> substring (#11273)

This commit is contained in:
okayurisotto
2023-07-14 07:59:54 +09:00
committed by GitHub
parent af30959cb9
commit c0dbc3b53f
23 changed files with 38 additions and 38 deletions

View File

@@ -31,7 +31,7 @@ function greet() {
console.log(themeColor(' | |_|___ ___| |_ ___ _ _ '));
console.log(themeColor(' | | | | |_ -|_ -| \'_| -_| | |'));
console.log(themeColor(' |_|_|_|_|___|___|_,_|___|_ |'));
console.log(' ' + chalk.gray(v) + themeColor(' |___|\n'.substr(v.length)));
console.log(' ' + chalk.gray(v) + themeColor(' |___|\n'.substring(v.length)));
//#endregion
console.log(' Misskey is an open-source decentralized microblogging platform.');