UNPKG
sorting-algo-ts
Version:
latest (1.1.5)
1.1.5
1.1.3
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
Sort multiple types of data structures using Bubble Sort.
NightClover-code/sorting-algorithm
sorting-algo-ts
/
build
/
cli
/
index.js
8 lines
(7 loc)
•
282 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
#!/usr/bin/env node
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
var
commander_1 =
require
(
"commander"
);
var
start_1 =
require
(
"./commands/start"
); commander_1.
program
.
addCommand
(start_1.
startCommand
); commander_1.
program
.
parse
(process.
argv
);