diff options
Diffstat (limited to 'node_modules/webpack/lib/util')
-rw-r--r-- | node_modules/webpack/lib/util/identifier.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/node_modules/webpack/lib/util/identifier.js b/node_modules/webpack/lib/util/identifier.js new file mode 100644 index 000000000..b1bcbf5df --- /dev/null +++ b/node_modules/webpack/lib/util/identifier.js @@ -0,0 +1,16 @@ +"use strict";
+const path = require("path");
+
+const looksLikeAbsolutePath = (maybeAbsolutePath) => {
+ return /^(?:[a-z]:\\|\/)/i.test(maybeAbsolutePath);
+};
+
+const normalizePathSeparator = (p) => p.replace(/\\/g, "/");
+
+exports.makePathsRelative = (context, identifier) => {
+ return identifier
+ .split(/([|! ])/)
+ .map(str => looksLikeAbsolutePath(str) ?
+ normalizePathSeparator(path.relative(context, str)) : str)
+ .join("");
+};
|