nekodb
nekodb copied to clipboard
Add a method to update an instance with an object
instance.assign({
field: 'newValue'
})
In the meanwhile, you can use Object.assign(instance, {field: 'newValue'}) to accomplish this yourself