mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-12 17:55:33 +00:00
12 lines
168 B
JavaScript
Executable File
12 lines
168 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
"use strict";
|
|
|
|
process.stdout.on('error', function( err ) {
|
|
if (err.code == "EPIPE") {
|
|
process.exit(0);
|
|
}
|
|
});
|
|
|
|
import "./aqua.js";
|