Files
luma/src/utils/misc.ts
T
2026-01-10 12:05:20 -03:00

10 lines
321 B
TypeScript

const MOD_EXCLUDE: Array<string> = ['.d.ts'];
const MOD_INCLUDE: Array<string> = ['.ts', '.js', '.mjs', '.cjs'];
export function isModule(path: string): boolean {
for (const ext of MOD_EXCLUDE) if (path.endsWith(ext)) return false;
for (const ext of MOD_INCLUDE) if (path.endsWith(ext)) return true;
return false;
}