fake-todo-list-js
v1.0.1
Published
fake todo list with the creator and assignee
Downloads
4
Maintainers
Readme
get simulation-ecommerce
Installation
npm install fake-todo-list-js
Usage
For use fake-todo-list-js
var fakeTodo = require('fake-todo-list-js');
fakeTodo.getTodo();
fakeTodo.addTodo({idCreator:1,idAssignee:2,action:"write a book"});
fakeTodo.deleteTodo(1);
fakeTodo.getComplete(2);
fakeTodo.getComplete(3);
fakeTodo.getUsers();
fakeTodo.addUsers({idUser:3,name:"Paolo"});
fakeTodo.todoUser(1);
fakeTodo.getActionTrue();
fakeTodo.getActionFalse();