Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / internal / cloneRegExp.js
diff --git a/node_modules/uncss/node_modules/lodash/internal/cloneRegExp.js b/node_modules/uncss/node_modules/lodash/internal/cloneRegExp.js
new file mode 100644 (file)
index 0000000..f36fd57
--- /dev/null
@@ -0,0 +1,19 @@
+/** 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 Ctor = regexp.constructor,
+      result = new Ctor(regexp.source, reFlags.exec(regexp));
+
+  result.lastIndex = regexp.lastIndex;
+  return result;
+}
+
+module.exports = cloneRegExp;