forked from mykolaharmash/promised-models
-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
var Model = require('./');
var ModelClass = Model.inherit({
attributes: {
id: Model.attributeTypes.Id
}
});
var model = new ModelClass();
model.set('id', 1);
console.log(model.get('id'), model.isSet('id')); // => 1 true
model.set('id', null);
console.log(model.get('id'), model.isSet('id')); // => null, true ????????
Metadata
Metadata
Assignees
Labels
No labels