![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/metras.v32.1/node_modules/clone-regexp/ |
# clone-regexp [](https://travis-ci.org/sindresorhus/clone-regexp) > Clone and modify a [RegExp](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp) instance ## Install ``` $ npm install clone-regexp ``` ## Usage ```js 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 ``` ## API ### cloneRegexp(regexp, [options]) #### regex Type: `RegExp` Regex to clone. #### options Type: `Object`<br> Properties: [`source`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/source) [`global`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/global) [`ignoreCase`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/ignoreCase) [`multiline`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/multiline) [`dotAll`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/dotAll) [`sticky`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/sticky) [`unicode`](http://norbertlindenberg.com/2012/05/ecmascript-supplementary-characters/#RegExp) [`lastIndex`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/lastIndex) Optionally modify the cloned `RegExp` instance. ## License MIT © [Sindre Sorhus](https://sindresorhus.com)