actions/github/codeql-action-v2/node_modules/safe-regex-test
2026-01-31 18:56:04 +01:00
..
.github initial commit of actions 2026-01-31 18:56:04 +01:00
test initial commit of actions 2026-01-31 18:56:04 +01:00
.eslintrc initial commit of actions 2026-01-31 18:56:04 +01:00
.nycrc initial commit of actions 2026-01-31 18:56:04 +01:00
CHANGELOG.md initial commit of actions 2026-01-31 18:56:04 +01:00
index.js initial commit of actions 2026-01-31 18:56:04 +01:00
LICENSE initial commit of actions 2026-01-31 18:56:04 +01:00
package.json initial commit of actions 2026-01-31 18:56:04 +01:00
README.md initial commit of actions 2026-01-31 18:56:04 +01:00

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