吕君喜 406d880ac6 first il y a 4 ans
..
test 406d880ac6 first il y a 4 ans
.npmignore 406d880ac6 first il y a 4 ans
.travis.yml 406d880ac6 first il y a 4 ans
History.md 406d880ac6 first il y a 4 ans
LICENSE 406d880ac6 first il y a 4 ans
Makefile 406d880ac6 first il y a 4 ans
README.md 406d880ac6 first il y a 4 ans
index.js 406d880ac6 first il y a 4 ans
package.json 406d880ac6 first il y a 4 ans

README.md

#regexp-clone

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

License

MIT