decova-dotnet-developer
Version:
This package provides fundumentals that a .net developer may miss while working with Typescript, whether they are missing functinalities or funcionalities provided in a non-elegant design in javascript. Bad naming, bad design of optional parameters, non-c
17 lines • 501 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JObject = void 0;
const decova_filesystem_1 = require("decova-filesystem");
class JObject {
static Load(path) {
let file = new decova_filesystem_1.FileInfo(path);
if (file.Exists() === false)
throw new Error(`Path [${path}] doesn't exist.`);
try {
}
catch (err) {
}
}
}
exports.JObject = JObject;
//# sourceMappingURL=JObject.js.map