JSPM

  • Created
  • Published
  • Downloads 58
  • Score
    100M100P100Q60161F
  • License MIT

ECMAScript proposed RegExp.escape.

Package Exports

  • regexp-escape-x

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (regexp-escape-x) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

regexp-escape-x

ECMAScript proposed RegExp.escape.

See: RegExp.escape

module.exports(string)string

Method to safely escape RegExp special tokens for use in new RegExp.

Kind: Exported function
Returns: string - The escaped string.
Throws:

  • TypeError If string is null or undefined or not coercible.
Param Type Description
string string The string to be escaped.

Example

import regexpEscape from 'regexp-escape-x';

const str = 'hello. how are you?';
const regex = new RegExp(regexpEscape(str), 'g');
console.log(String(regex)); // '/hello\. how are you\?/g'