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

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