diff --git a/src/model.js b/src/model.js index 3a1e841..82311e5 100644 --- a/src/model.js +++ b/src/model.js @@ -285,7 +285,7 @@ class Model extends EventEmitter(Object) { * Remove an attribute from the model, firing `"change"`. `unset` is a noop * if the attribute doesn't exist. * @param {string} attr - * @param {Options} options + * @param {Options} [options] */ unset(attr, options) { return this.set(attr, undefined, Object.assign({}, options, { unset: true }));