xregexp-quotemeta augments XRegExp to support the \Q..\E
construct for escaping special regular expression characters.
The functionality is added as an XRegExp addon.
The specific semantics of quotemeta support are described in slevithan/xregexp#85.
In browsers (bundle XRegExp with all of its addons):
<script src="xregexp-all.js"></script>
<script src="xregexp-quotemeta-inject.js"></script>
Using npm:
npm install xregexp-quotemeta
In Node.js:
const XRegExp = require('xregexp');
const quotemeta = require('xregexp-quotemeta');
quotemeta.addSupportTo(XRegExp);
In an AMD loader like RequireJS:
require(['xregexp', 'xregexp-quotemeta'], function(XRegExp, quotemeta) {
quotemeta.addSupportTo(XRegExp);
});
xregexp-quotemeta copyright 2018 by Brandon Mintern and copyright 2015 by Steven Levithan.
All code, including addons, tools, and tests, is released under the terms of the MIT License.