UNPKG

marko

Version:

UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.

4 lines 197 B
"use strict";exports.__esModule = true;exports.escapeRegExp = escapeRegExp;const regexpCharsReg = /[\\^$.*+?()[\]{}|]/g; function escapeRegExp(str) { return str.replace(regexpCharsReg, "\\$&"); }