Ohm-Management - Projektarbeit B-ME
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.
Senta Mandutz f3c33a35cd database and ajax test added 5 years ago
..
test database and ajax test added 5 years ago
.npmignore database and ajax test added 5 years ago
.travis.yml database and ajax test added 5 years ago
History.md database and ajax test added 5 years ago
LICENSE database and ajax test added 5 years ago
Makefile database and ajax test added 5 years ago
README.md database and ajax test added 5 years ago
index.js database and ajax test added 5 years ago
package.json database and ajax test added 5 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