mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
18 lines
441 B
TypeScript
18 lines
441 B
TypeScript
|
export default (sql: string) => {
|
||
|
const output = [];
|
||
|
const lines = sql.split('\n');
|
||
|
let statement = '';
|
||
|
for (let i = 0; i < lines.length; i++) {
|
||
|
const line = lines[i];
|
||
|
if (line === '') continue;
|
||
|
if (line.substr(0, 2) === '--') continue;
|
||
|
statement += line.trim();
|
||
|
if (line[line.length - 1] === ',') statement += ' ';
|
||
|
if (line[line.length - 1] === ';') {
|
||
|
output.push(statement);
|
||
|
statement = '';
|
||
|
}
|
||
|
}
|
||
|
return output;
|
||
|
};
|