[EDIT] FILE: _cloneRegExp.js.tar
home/koolde6/public_html/lovestrong/server/node_modules/lodash/_cloneRegExp.js 0000755 00000000667 15073753404 0023734 0 ustar 00 /** 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; home/koolde6/public_html/lovestrong/frontend/node_modules/lodash/_cloneRegExp.js 0000755 00000000667 15076426463 0024252 0 ustar 00 /** 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;
SAVE
CANCEL