mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 03:33:39 +08:00
12 lines
218 B
JavaScript
12 lines
218 B
JavaScript
export default function formatTextWithSelection(text, [start, len]) {
|
|
return [
|
|
'"',
|
|
text.substr(0, start),
|
|
"<",
|
|
text.substr(start, len),
|
|
">",
|
|
text.substr(start + len),
|
|
'"'
|
|
].join("");
|
|
}
|