mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-22 20:13:36 +00:00
refactor: substr -> substring (#11273)
This commit is contained in:
@@ -35,7 +35,7 @@ export const fromThemeString = (str?: string) : ThemeValue => {
|
||||
} else if (str.startsWith('"')) {
|
||||
return {
|
||||
type: 'css',
|
||||
value: str.substr(1).trim(),
|
||||
value: str.substring(1).trim(),
|
||||
};
|
||||
} else {
|
||||
return str;
|
||||
|
||||
Reference in New Issue
Block a user