Sha256: b4fbd68d3aeb8081412cdaa28e6ae218b5d014db61fdf12199942d953c578d4f

Contents?: true

Size: 871 Bytes

Versions: 274

Compression:

Stored size: 871 Bytes

Contents

var toString = require('./toString');

/**
 * Used to match `RegExp`
 * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).
 */
var reRegExpChar = /[\\^$.*+?()[\]{}|]/g,
    reHasRegExpChar = RegExp(reRegExpChar.source);

/**
 * Escapes the `RegExp` special characters "^", "$", "\", ".", "*", "+",
 * "?", "(", ")", "[", "]", "{", "}", and "|" in `string`.
 *
 * @static
 * @memberOf _
 * @since 3.0.0
 * @category String
 * @param {string} [string=''] The string to escape.
 * @returns {string} Returns the escaped string.
 * @example
 *
 * _.escapeRegExp('[lodash](https://lodash.com/)');
 * // => '\[lodash\]\(https://lodash\.com/\)'
 */
function escapeRegExp(string) {
  string = toString(string);
  return (string && reHasRegExpChar.test(string))
    ? string.replace(reRegExpChar, '\\$&')
    : string;
}

module.exports = escapeRegExp;

Version data entries

274 entries across 272 versions & 30 rubygems

Version Path
sumomo-0.7.3 data/sumomo/api_modules/node_modules/lodash/escapeRegExp.js
sumomo-0.7.2 data/sumomo/api_modules/node_modules/lodash/escapeRegExp.js
sumomo-0.7.1 data/sumomo/api_modules/node_modules/lodash/escapeRegExp.js
sumomo-0.6.4 data/sumomo/api_modules/node_modules/lodash/escapeRegExp.js
sumomo-0.6.3 data/sumomo/api_modules/node_modules/lodash/escapeRegExp.js
sumomo-0.6.2 data/sumomo/api_modules/node_modules/lodash/escapeRegExp.js
sumomo-0.6.1 data/sumomo/api_modules/node_modules/lodash/escapeRegExp.js
affiliator-0.2.1 node_modules/lodash/escapeRegExp.js
sumomo-0.6.0 data/sumomo/api_modules/node_modules/lodash/escapeRegExp.js
guard-sass-lint-0.1.2 node_modules/lodash/escapeRegExp.js
guard-sass-lint-0.1.1 node_modules/lodash/escapeRegExp.js
lanes-0.8.0 node_modules/lodash/escapeRegExp.js
lanes-0.8.0 node_modules/globule/node_modules/lodash/escapeRegExp.js
minimum_viable_product-0.0.11 test/dummy/node_modules/lodash/escapeRegExp.js