mirror of
https://github.com/strapi/strapi.git
synced 2025-09-09 16:47:06 +00:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
![]() |
/* eslint-disable @typescript-eslint/no-var-requires */
|
||
|
|
||
|
export = function importDefault(modName) {
|
||
|
const mod = require(modName);
|
||
|
return mod && mod.__esModule ? mod.default : mod;
|
||
|
};
|