An ESnext spec-compliant `RegExp.escape` shim/polyfill/replacement that works as far down as ES3.
44
stars
78
commits
JavaScript
primary language
Dec 30, 2025
updated
A robust & optimized ES3-compatible polyfill for the RegExp.escape proposal.
Use it to safely escape RegExp special tokens for use in new RegExp.
Use it as a standalone function, or call its shim method to install it as a polyfill.
var escape = require('regexp.escape');
var assert = require('assert');
var str = 'hello. how are you?';
var regex = new RegExp('^' + escape(str) + '$');
assert.match(str, regex);
assert.doesNotMatch('hello, how are you!', regex);
Simply clone the repo, npm install, and run npm test
78 commits
JavaScript
100.0%
An ESnext spec-compliant `RegExp.escape` shim/polyfill/replacement that works as far down as ES3.
44
stars
78
commits
JavaScript
primary language
Dec 30, 2025
updated
A robust & optimized ES3-compatible polyfill for the RegExp.escape proposal.
Use it to safely escape RegExp special tokens for use in new RegExp.
Use it as a standalone function, or call its shim method to install it as a polyfill.
var escape = require('regexp.escape');
var assert = require('assert');
var str = 'hello. how are you?';
var regex = new RegExp('^' + escape(str) + '$');
assert.match(str, regex);
assert.doesNotMatch('hello, how are you!', regex);
Simply clone the repo, npm install, and run npm test
78 commits
JavaScript
100.0%