String.prototype.substr() is deprecated so we replace it with String.prototype.slice() which works similarily but isn't deprecated. Signed-off-by: Tobias Speicher <rootcommander@gmail.com> Co-authored-by: Jarek Radosz <jradosz@gmail.com>
12 lines
224 B
JavaScript
12 lines
224 B
JavaScript
export default function formatTextWithSelection(text, [start, len]) {
|
|
return [
|
|
'"',
|
|
text.slice(0, start),
|
|
"<",
|
|
text.slice(start, start + len),
|
|
">",
|
|
text.slice(start + len),
|
|
'"',
|
|
].join("");
|
|
}
|