ezno 0.0.5

A JavaScript checker and compiler. For use as a library or cli
Documentation
1
2
3
4
5
6
7
const fs = require("fs");

module.exports.get_cli_args = () => process.argv.slice(2).join('\0');
module.exports.read_from_path = (path) => fs.readFileSync(path).toString();
module.exports.read_from_cli = () => {
    throw "TODO"
};