rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
16 lines • 441 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._RegExp = void 0;
const regex_escape_regex_js_1 = require("./impl/regex-escape-regex.js");
/**
* @public
* Utilities that apply to `RegExp`.
*/
class _RegExp {
constructor() {
}
}
exports._RegExp = _RegExp;
/** {@inheritDoc regexEscapeRegex} */
_RegExp.escapeRegex = regex_escape_regex_js_1.regexEscapeRegex;
//# sourceMappingURL=_reg-exp.js.map