2.0.0 • Published 5 years ago
todowork v2.0.0
todowork

A todo framework
Install
npm i todoworkor
yarn add todoworkUsage
import { TodoList } from 'todowork';
// Create a new list
const list = new TodoList();
// Add some stuff
list.items.push({
name: 'Make a to-do app',
complete: false
});
// Clear list
list.clear();Docs
Go to here