This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/node_modules/@babel/preset-env/lib/polyfills/utils.cjs
2025-01-13 09:33:52 +03:00

23 lines
672 B
JavaScript

;
exports.getImportSource = function ({
node
}) {
if (node.specifiers.length === 0) return node.source.value;
};
exports.getRequireSource = function ({
node
}) {
if (node.type !== "ExpressionStatement") return;
const {
expression
} = node;
if (expression.type === "CallExpression" && expression.callee.type === "Identifier" && expression.callee.name === "require" && expression.arguments.length === 1 && expression.arguments[0].type === "StringLiteral") {
return expression.arguments[0].value;
}
};
exports.isPolyfillSource = function (source) {
return source === "@babel/polyfill" || source === "core-js";
};
//# sourceMappingURL=utils.cjs.map