UNPKG

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

21 lines 640 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Process = void 0; const decova_filesystem_1 = require("decova-filesystem"); const List_1 = require("../List/List"); class Process { static get CurrentWorkingDirectory() { return new decova_filesystem_1.DirectoryInfo(process.cwd()); } static get ExePath() { return process.argv[0]; } static get EntryFilePath() { return process.argv[1]; } static get Args() { return new List_1.List(process.argv.slice(2)); } } exports.Process = Process; //# sourceMappingURL=Process.js.map