npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

regexpify

0.0.0

@stevemao

npmHomeRepoSnykSocket
Downloads:186
$ npm install regexpify
DailyWeeklyMonthlyYearly

NPM version Build Status Dependency Status Coverage Status

Turn a string to a regexp

Install

$ npm install --save regexpify

Usage

var regexpify = require('regexpify');

regexpify('');
//=> /.^/

regexpify('Rainbow');
//=> /Rainbow/

regexpify('how much $ for a unicorn?', true);
//=> /how much \$ for a unicorn\?/

License

MIT © Steve Mao