mc-term
Version:
Play Minecraft and configure bots from the terminal
10 lines (9 loc) • 331 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.importTOML = importTOML;
const fs_1 = require("fs");
const toml_1 = require("@iarna/toml");
function importTOML(path) {
(0, fs_1.accessSync)(path, fs_1.constants.F_OK);
return (0, toml_1.parse)((0, fs_1.readFileSync)(path).toString());
}
;