Warp/node_modules/mark.js/src/vanilla.js
2024-01-05 19:14:38 +07:00

22 lines
No EOL
458 B
JavaScript

import MarkJS from './lib/mark';
export default function Mark(ctx) {
const instance = new MarkJS(ctx);
this.mark = (sv, opt) => {
instance.mark(sv, opt);
return this;
};
this.markRegExp = (sv, opt) => {
instance.markRegExp(sv, opt);
return this;
};
this.markRanges = (sv, opt) => {
instance.markRanges(sv, opt);
return this;
};
this.unmark = (opt) => {
instance.unmark(opt);
return this;
};
return this;
}