UNPKG

suma-db

Version:

A Brazilian database that supports JSON(JavaScript Object Notation)

6 lines 226 B
module.exports = function(Class, value) { if(typeof value !== 'object') throw new RangeError(`You cannot put a value that is not an object.`) Class.setValue(value); Class.emit('put', value) return value; }