chore: replace deprecated String.prototype.substr() (#6333)

* chore: replace deprecated String.prototype.substr()

.substr() is deprecated so we replace it with .slice() which works similarily but isn't deprecated

Signed-off-by: Tobias Speicher <rootcommander@gmail.com>

* refactor: add prefer slice lint rule and fix errors

Co-authored-by: erezrokah <erezrokah@users.noreply.github.com>
This commit is contained in:
CommanderRoot
2022-03-28 19:29:56 +02:00
committed by GitHub
parent de624a9c11
commit 59b9348093
20 changed files with 157 additions and 106 deletions

View File

@ -177,7 +177,9 @@ export default function slateToRemark(raw, { voidCodeBlock }) {
const index = node.text.search(exp);
if (index > -1) {
const substringIndex = trailing ? index : index + 1;
// eslint-disable-next-line unicorn/prefer-string-slice
const firstSplit = node.text.substring(0, substringIndex);
// eslint-disable-next-line unicorn/prefer-string-slice
const secondSplit = node.text.substring(substringIndex);
const whitespace = trailing ? secondSplit : firstSplit;
const text = trailing ? firstSplit : secondSplit;