aboutsummaryrefslogtreecommitdiff
path: root/node_modules/zip-stream/node_modules/lodash/_getWrapDetails.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/zip-stream/node_modules/lodash/_getWrapDetails.js')
-rw-r--r--node_modules/zip-stream/node_modules/lodash/_getWrapDetails.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/node_modules/zip-stream/node_modules/lodash/_getWrapDetails.js b/node_modules/zip-stream/node_modules/lodash/_getWrapDetails.js
deleted file mode 100644
index 3bcc6e48a..000000000
--- a/node_modules/zip-stream/node_modules/lodash/_getWrapDetails.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/** Used to match wrap detail comments. */
-var reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/,
- reSplitDetails = /,? & /;
-
-/**
- * Extracts wrapper details from the `source` body comment.
- *
- * @private
- * @param {string} source The source to inspect.
- * @returns {Array} Returns the wrapper details.
- */
-function getWrapDetails(source) {
- var match = source.match(reWrapDetails);
- return match ? match[1].split(reSplitDetails) : [];
-}
-
-module.exports = getWrapDetails;