El Mehdi Touimi Benjelloun 015b74845c First commit | il y a 5 ans | |
---|---|---|
.. | ||
test | il y a 5 ans | |
.npmignore | il y a 5 ans | |
.travis.yml | il y a 5 ans | |
History.md | il y a 5 ans | |
LICENSE | il y a 5 ans | |
Makefile | il y a 5 ans | |
README.md | il y a 5 ans | |
index.js | il y a 5 ans | |
package.json | il y a 5 ans |
Clones RegExps with flag preservation
var regexpClone = require('regexp-clone');
var a = /somethin/g;
console.log(a.global); // true
var b = regexpClone(a);
console.log(b.global); // true