chensenlai 10988628a0 语音房项目初始化 hace 5 años
..
test 10988628a0 语音房项目初始化 hace 5 años
.npmignore 10988628a0 语音房项目初始化 hace 5 años
.travis.yml 10988628a0 语音房项目初始化 hace 5 años
History.md 10988628a0 语音房项目初始化 hace 5 años
LICENSE 10988628a0 语音房项目初始化 hace 5 años
Makefile 10988628a0 语音房项目初始化 hace 5 años
README.md 10988628a0 语音房项目初始化 hace 5 años
index.js 10988628a0 语音房项目初始化 hace 5 años
package.json 10988628a0 语音房项目初始化 hace 5 años

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