delete: function()

in todos.js [55:61]


  delete: function (id, callback) {
    const key = datastore.key(['TodoList', LIST_NAME, 'Todo', id]);

    datastore.delete(key, function (err) {
      callback(err || null);
    });
  },