1.1.1 • Published 6 years ago

fashion-model-defaults v1.1.1

Weekly downloads
1,917
License
MIT
Repository
github
Last release
6 years ago

fashion-model-defaults

fashion-model mixin that attaches an applyDefaults method to the model prototype.

Using default as a standard value:

var DefaultsMixin = require('fashion-model-defaults');

var Person = Model.extend({
  mixins: [DefaultsMixin],
  properties: {
    name: {
      type: String,
      default: 'Bob'
    },
    age: Number
  }
});

var bob = new Person({
  age: 30
});

bob.applyDefaults();
bob.getName(); // Returns 'Bob'

Using default as a function:

var DefaultsMixin = require('fashion-model-defaults');

var Person = Model.extend({
  mixins: [DefaultsMixin],
  properties: {
    name: {
      type: String,
      default: function() {
        return 'Bob';
      }
    },
    age: Number
  }
});

var bob = new Person({
  age: 30
});

bob.applyDefaults();
bob.getName(); // Returns 'Bob'
1.1.1

6 years ago

1.1.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago