deno.land / x / lodash@4.17.19 / npm-package / _cloneRegExp.js

_cloneRegExp.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** Used to match `RegExp` flags from their coerced string values. */var reFlags = /\w*$/;
/** * Creates a clone of `regexp`. * * @private * @param {Object} regexp The regexp to clone. * @returns {Object} Returns the cloned regexp. */function cloneRegExp(regexp) { var result = new regexp.constructor(regexp.source, reFlags.exec(regexp)); result.lastIndex = regexp.lastIndex; return result;}
module.exports = cloneRegExp;
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉