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

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