This commit is contained in:
Alex Dima 2020-09-11 12:56:24 +02:00
parent 8a4357c301
commit a1c30dff82
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ for (let line of lines) {
continue;
}
line = line.replace(/ /g, '\t');
line = line.replace(/export declare/g, 'export');
line = line.replace(/declare /g, '');
if (line.length > 0) {
line = `\t${line}`;
result.push(line);