Pibd-21_Ievlewa_M.D._Intern.../node_modules/safe-regex-test
2023-12-03 18:52:09 +03:00
..
.github Лабораторная 2 2023-12-03 18:52:09 +03:00
test Лабораторная 2 2023-12-03 18:52:09 +03:00
.eslintrc Лабораторная 2 2023-12-03 18:52:09 +03:00
CHANGELOG.md Лабораторная 2 2023-12-03 18:52:09 +03:00
index.js Лабораторная 2 2023-12-03 18:52:09 +03:00
LICENSE Лабораторная 2 2023-12-03 18:52:09 +03:00
package.json Лабораторная 2 2023-12-03 18:52:09 +03:00
README.md Лабораторная 2 2023-12-03 18:52:09 +03:00

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