Socket
Socket
Sign inDemoInstall

safe-regex-test

Package Overview
Dependencies
14
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    safe-regex-test

Give a regex, get a robust predicate function that tests it against a string.


Version published
Weekly downloads
26M
increased by2.88%
Maintainers
1
Install size
276 kB
Created
Weekly downloads
 

Changelog

Source

v1.0.3 - 2024-02-06

Commits

  • [Refactor] use es-errors, so things that only need those do not need get-intrinsic d6ba2f9
  • [Deps] update call-bind, get-intrinsic 5a3b1d7
  • [Dev Deps] update tape 75fb719

Readme

Source

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

Keywords

FAQs

Last updated on 06 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc