1.0.0 • Published 1 month ago

@npmtuanmap2024/consequatur-veniam-optio v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

@npmtuanmap2024/consequatur-veniam-optio 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 @npmtuanmap2024/consequatur-veniam-optio

Usage/Examples

var regexTester = require('@npmtuanmap2024/consequatur-veniam-optio');
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