11 lines
219 B
JavaScript
Executable file
11 lines
219 B
JavaScript
Executable file
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = isModule;
|
|
function isModule(path) {
|
|
return path.node.sourceType === "module";
|
|
}
|
|
|
|
//# sourceMappingURL=is-module.js.map
|