| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 | "use strict";exports.__esModule = true;exports.nodeResolvePath = nodeResolvePath;exports.isRelativePath = isRelativePath;exports.toPosixPath = toPosixPath;exports.toLocalPath = toLocalPath;exports.stripExtension = stripExtension;exports.replaceExtension = replaceExtension;exports.matchesPattern = matchesPattern;exports.mapPathString = mapPathString;exports.isImportCall = isImportCall;exports.escapeRegExp = escapeRegExp;var _path = _interopRequireDefault(require("path"));var _resolve = _interopRequireDefault(require("resolve"));function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }function nodeResolvePath(modulePath, basedir, extensions) {  try {    return _resolve.default.sync(modulePath, {      basedir,      extensions    });  } catch (e) {    return null;  }}function isRelativePath(nodePath) {  return nodePath.match(/^\.?\.\//);}function toPosixPath(modulePath) {  return modulePath.replace(/\\/g, '/');}function toLocalPath(modulePath) {  let localPath = modulePath.replace(/\/index$/, ''); // remove trailing /index  if (!isRelativePath(localPath)) {    localPath = `./${localPath}`; // insert `./` to make it a relative path  }  return localPath;}function stripExtension(modulePath, stripExtensions) {  let name = _path.default.basename(modulePath);  stripExtensions.some(extension => {    if (name.endsWith(extension)) {      name = name.slice(0, name.length - extension.length);      return true;    }    return false;  });  return name;}function replaceExtension(modulePath, opts) {  const filename = stripExtension(modulePath, opts.stripExtensions);  return _path.default.join(_path.default.dirname(modulePath), filename);}function matchesPattern(types, calleePath, pattern) {  const node = calleePath.node;  if (types.isMemberExpression(node)) {    return calleePath.matchesPattern(pattern);  }  if (!types.isIdentifier(node) || pattern.includes('.')) {    return false;  }  const name = pattern.split('.')[0];  return node.name === name;}function mapPathString(nodePath, state) {  if (!state.types.isStringLiteral(nodePath)) {    return;  }  const sourcePath = nodePath.node.value;  const currentFile = state.file.opts.filename;  const modulePath = state.normalizedOpts.resolvePath(sourcePath, currentFile, state.opts);  if (modulePath) {    if (nodePath.node.pathResolved) {      return;    }    nodePath.replaceWith(state.types.stringLiteral(modulePath));    nodePath.node.pathResolved = true;  }}function isImportCall(types, calleePath) {  return types.isImport(calleePath.node.callee);}function escapeRegExp(string) {  return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');}
 |