regex-word-boundary

1.1.2 • Public • Published

regex-word-boundary

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

Helper for create a word boundary regex based in a collection

Install

$ npm install regex-word-boundary --save

Usage

const createWordBoundaryRegex = require('regex-word-boundary')
 
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.

Readme

Keywords

Package Sidebar

Install

npm i regex-word-boundary

Weekly Downloads

3

Version

1.1.2

License

MIT

Unpacked Size

8.34 kB

Total Files

5

Last publish

Collaborators

  • kikobeats