吕君喜 406d880ac6 first il y a 3 ans
..
test 406d880ac6 first il y a 3 ans
.npmignore 406d880ac6 first il y a 3 ans
.travis.yml 406d880ac6 first il y a 3 ans
History.md 406d880ac6 first il y a 3 ans
LICENSE 406d880ac6 first il y a 3 ans
Makefile 406d880ac6 first il y a 3 ans
README.md 406d880ac6 first il y a 3 ans
index.js 406d880ac6 first il y a 3 ans
package.json 406d880ac6 first il y a 3 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