You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
8 years ago | |
|---|---|---|
| .. | ||
| test | 8 years ago | |
| .npmignore | 8 years ago | |
| .travis.yml | 8 years ago | |
| History.md | 8 years ago | |
| LICENSE | 8 years ago | |
| Makefile | 8 years ago | |
| README.md | 8 years ago | |
| index.js | 8 years ago | |
| package.json | 8 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