File size: 139 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
/**
* Interop between "export default" and "module.exports".
*/
export function interopDefault(mod: any) {
return mod.default || mod
}
|
1e92f2d |
1 2 3 4 5 6 7 |
/**
* Interop between "export default" and "module.exports".
*/
export function interopDefault(mod: any) {
return mod.default || mod
}
|