prc b6c02717e6 Upload complete no-internet building environment. há 1 ano atrás
..
.github b6c02717e6 Upload complete no-internet building environment. há 1 ano atrás
test b6c02717e6 Upload complete no-internet building environment. há 1 ano atrás
.eslintrc b6c02717e6 Upload complete no-internet building environment. há 1 ano atrás
CHANGELOG.md b6c02717e6 Upload complete no-internet building environment. há 1 ano atrás
LICENSE b6c02717e6 Upload complete no-internet building environment. há 1 ano atrás
README.md b6c02717e6 Upload complete no-internet building environment. há 1 ano atrás
index.js b6c02717e6 Upload complete no-internet building environment. há 1 ano atrás
package.json b6c02717e6 Upload complete no-internet building environment. há 1 ano atrás

README.md

safe-regex-test Version Badge

dependency status dev dependency status 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