Bakhtina Sofya b84cb877be 1st comm 2 weeks ago
..
.github b84cb877be 1st comm 2 weeks ago
test b84cb877be 1st comm 2 weeks ago
.eslintrc b84cb877be 1st comm 2 weeks ago
.nycrc b84cb877be 1st comm 2 weeks ago
CHANGELOG.md b84cb877be 1st comm 2 weeks ago
LICENSE b84cb877be 1st comm 2 weeks ago
README.md b84cb877be 1st comm 2 weeks ago
index.js b84cb877be 1st comm 2 weeks ago
package.json b84cb877be 1st comm 2 weeks ago

README.md

safe-regex-test Version Badge

github actions coverage License Downloads

npm badge

Give a regex, get a robust predicate function that tests it against a string. This will work even if RegExp.prototype is altered later.

Getting started

npm install --save safe-regex-test

Usage/Examples

var regexTester = require('safe-regex-test');
var assert = require('assert');

var tester = regexTester('a');
assert.ok(tester('a'));
assert.notOk(tester('b'));

Tests

Simply clone the repo, npm install, and run npm test