El Mehdi Touimi Benjelloun 015b74845c First commit | hace 5 años | |
---|---|---|
.. | ||
test | hace 5 años | |
.npmignore | hace 5 años | |
.travis.yml | hace 5 años | |
History.md | hace 5 años | |
LICENSE | hace 5 años | |
Makefile | hace 5 años | |
README.md | hace 5 años | |
index.js | hace 5 años | |
package.json | hace 5 años |
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