mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
de24ff275d
swc_ecma_transforms_module: - Allow using a namespace import specifier with a default import specifier. (#1938)
28 lines
869 B
JavaScript
28 lines
869 B
JavaScript
"use strict";
|
|
var action = _interopRequireWildcard(require("./actions"));
|
|
function _interopRequireWildcard(obj) {
|
|
if (obj && obj.__esModule) {
|
|
return obj;
|
|
} else {
|
|
var newObj = {
|
|
};
|
|
if (obj != null) {
|
|
for(var key in obj){
|
|
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {
|
|
};
|
|
if (desc.get || desc.set) {
|
|
Object.defineProperty(newObj, key, desc);
|
|
} else {
|
|
newObj[key] = obj[key];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
newObj.default = obj;
|
|
return newObj;
|
|
}
|
|
}
|
|
console.log(action);
|
|
console.log(action.default);
|