1
0
mirror of https://github.com/actions/labeler synced 2026-05-06 03:37:48 +02:00
Files
labeler/node_modules/@babel/helper-module-imports/lib/is-module.js
David Kale 91fcbb0108 build
2020-09-08 13:25:36 -04:00

18 lines
381 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isModule;
function isModule(path) {
const {
sourceType
} = path.node;
if (sourceType !== "module" && sourceType !== "script") {
throw path.buildCodeFrameError(`Unknown sourceType "${sourceType}", cannot transform.`);
}
return path.node.sourceType === "module";
}