9 lines
264 B
JavaScript
9 lines
264 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getCLIArguments = void 0;
|
|
var getCLIArguments = function () {
|
|
console.log(process.argv);
|
|
};
|
|
exports.getCLIArguments = getCLIArguments;
|
|
(0, exports.getCLIArguments)();
|