APIPlatform

replaced by organizationContent to support and extend the book published through Packt Publishing & provide general API information - order the book from [Packt](bit.ly/APIP-CS) or Amazon Edit

View the Project on GitHub APIPlatform-Book/APIPlatform

#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