UNPKG

@danielkalen/simplybind

Version:

Magically simple, framework-less one-way/two-way data binding for frontend/backend in ~5kb.

13 lines (11 loc) 279 B
module.exports = function (obj, prop) { console.log("plastiq.bind() will be deprecated in the next release, use [model, 'fieldName'] instead"); return { get: function () { return obj[prop]; }, set: function (value) { obj[prop] = value; } }; };