discourse/test/javascripts/helpers/d-editor-helper.js
2018-07-30 12:21:05 +02:00

16 lines
252 B
JavaScript

Ember.Test.registerAsyncHelper("formatTextWithSelection", function(
app,
text,
[start, len]
) {
return [
'"',
text.substr(0, start),
"<",
text.substr(start, len),
">",
text.substr(start + len),
'"'
].join("");
});