UNPKG

dbcopycat

Version:

A JSON Database that saves your Json data in a file and makes it easy for you to perform CRUD operations.

8 lines (5 loc) 176 B
const removeData = require('../helpers/removeData'); function deleteById(arrayName, dataId) { return removeData(arrayName, dataId); } module.exports = deleteById;