peach a19a732be8 commit message | преди 2 години | |
---|---|---|
.. | ||
index.d.ts | преди 2 години | |
index.js | преди 2 години | |
license | преди 2 години | |
package.json | преди 2 години | |
readme.md | преди 2 години |
Clone and modify a RegExp instance
$ npm install clone-regexp
const cloneRegexp = require('clone-regexp');
const regex = /[a-z]/gi;
cloneRegexp(regex);
//=> /[a-z]/gi
cloneRegexp(regex) === regex;
//=> false
cloneRegexp(regex, {global: false});
//=> /[a-z]/i
cloneRegexp(regex, {multiline: true});
//=> /[a-z]/gim
cloneRegexp(regex, {source: 'unicorn'});
//=> /unicorn/gi
Type: RegExp
Regex to clone.
Type: Object
Properties: source
global
ignoreCase
multiline
dotAll
sticky
unicode
lastIndex
Optionally modify the cloned RegExp
instance.
MIT © Sindre Sorhus