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
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