UNPKG
todo
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
0.10.0
0.9.9
0.0.3
0.0.2
0.0.1
Todos in the CLI like what.
github.com/vesln/todo
vesln/todo
todo
/
lib
/
cli
/
renumber.js
17 lines
(15 loc)
•
222 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** * Re-numbers. * * Example: * * $ todo renumber * *
@param
{
Object
}
argv
*
@param
{
Todos
}
todos
*
@returns
{
Array
} *
@api
public
*/
module
.
exports
=
function
(
argv, todos
) {
return
todos.
renumber
(); };