yeet
This commit is contained in:
20
node_modules/babel-plugin-module-resolver/lib/transformers/call.js
generated
vendored
Normal file
20
node_modules/babel-plugin-module-resolver/lib/transformers/call.js
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = transformCall;
|
||||
|
||||
var _utils = require("../utils");
|
||||
|
||||
function transformCall(nodePath, state) {
|
||||
if (state.moduleResolverVisited.has(nodePath)) {
|
||||
return;
|
||||
}
|
||||
|
||||
const calleePath = nodePath.get('callee');
|
||||
const isNormalCall = state.normalizedOpts.transformFunctions.some(pattern => (0, _utils.matchesPattern)(state.types, calleePath, pattern));
|
||||
|
||||
if (isNormalCall || (0, _utils.isImportCall)(state.types, nodePath)) {
|
||||
state.moduleResolverVisited.add(nodePath);
|
||||
(0, _utils.mapPathString)(nodePath.get('arguments.0'), state);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user