1.0.0 • Published 7 years ago

create-word-boundary-regex v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

create-word-boundary-regex

Last version Build Status Coverage Status Dependency status Dev Dependencies Status NPM Status Donate

Helper for create a word boundary regex based in a collection

Install

$ npm install create-word-boundary-regex --save

Usage

const createWordBoundaryRegex = require('create-word-boundary-regex')

const regex = createWordBoundaryRegex([
  'hello',
  'world'
])

console.log(regex)
// => /\bhello\b|\bworld\b/i

API

createWordBoundaryRegex(collection, flags)

collection

Required Type: Array

Collection of String for create the regex.

flags

Type: String Default: i

Regex flags for create the regex.

License

MIT © Kiko Beats.