Vinícius Ernani de Carvalho 6c4544a079 Create the backend 6 years ago
..
test 6c4544a079 Create the backend 6 years ago
.npmignore 6c4544a079 Create the backend 6 years ago
.travis.yml 6c4544a079 Create the backend 6 years ago
History.md 6c4544a079 Create the backend 6 years ago
LICENSE 6c4544a079 Create the backend 6 years ago
Makefile 6c4544a079 Create the backend 6 years ago
README.md 6c4544a079 Create the backend 6 years ago
index.js 6c4544a079 Create the backend 6 years ago
package.json 6c4544a079 Create the backend 6 years ago

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