Mohammad Asif cf937194cb Removed un-waned things 1. vor 5 Monaten
..
.github cf937194cb Removed un-waned things 1. vor 5 Monaten
test cf937194cb Removed un-waned things 1. vor 5 Monaten
.eslintrc cf937194cb Removed un-waned things 1. vor 5 Monaten
.nycrc cf937194cb Removed un-waned things 1. vor 5 Monaten
CHANGELOG.md cf937194cb Removed un-waned things 1. vor 5 Monaten
LICENSE cf937194cb Removed un-waned things 1. vor 5 Monaten
README.md cf937194cb Removed un-waned things 1. vor 5 Monaten
index.js cf937194cb Removed un-waned things 1. vor 5 Monaten
package.json cf937194cb Removed un-waned things 1. vor 5 Monaten

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