@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
14 lines (13 loc) • 371 B
text/typescript
const _newLines: string[] = [];
export function removeImportExport(fileContent: string) {
const lines = fileContent.split('\n');
_newLines.length = 0;
for (const line of lines) {
const isImport = line.includes('import {');
const isExport = line.includes('export {');
if (!(isImport || isExport)) {
_newLines.push(line);
}
}
return _newLines.join('\n');
}