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