some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / lodash / _getWrapDetails.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_getWrapDetails.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/lodash/_getWrapDetails.js
deleted file mode 100644 (file)
index 3bcc6e4..0000000
+++ /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;