This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/babel-plugin-module-resolver/lib/transformers/import.js

15 lines
331 B
JavaScript
Raw Normal View History

2019-08-11 18:48:02 +00:00
"use strict";
exports.__esModule = true;
exports.default = transformImport;
var _utils = require("../utils");
function transformImport(nodePath, state) {
if (state.moduleResolverVisited.has(nodePath)) {
return;
}
state.moduleResolverVisited.add(nodePath);
(0, _utils.mapPathString)(nodePath.get('source'), state);
}