Browse Source

refactor: 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>
pull/866/head
Tobias Speicher 2 years ago
committed by Alex Kocharin
parent
commit
e6d1bfdee1
  1. 2
      lib/rules_block/table.js
  2. 2
      lib/rules_core/smartquotes.js

2
lib/rules_block/table.js

@ -9,7 +9,7 @@ function getLine(state, line) {
var pos = state.bMarks[line] + state.tShift[line],
max = state.eMarks[line];
return state.src.substr(pos, max - pos);
return state.src.slice(pos, max);
}
function escapedSplit(str) {

2
lib/rules_core/smartquotes.js

@ -13,7 +13,7 @@ var APOSTROPHE = '\u2019'; /* ’ */
function replaceAt(str, index, ch) {
return str.substr(0, index) + ch + str.substr(index + 1);
return str.slice(0, index) + ch + str.slice(index + 1);
}
function process_inlines(tokens, state) {

Loading…
Cancel
Save