-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
40 lines (34 loc) · 944 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';
/**
* Return a function which will process changes on the instance based on the
* object that is provided and emit a dedicated "change" event.
*
* @param {String} suffix The suffix for the event we emit.
* @returns {Function}
* @api public
*/
module.exports = function modification(suffix) {
suffix = arguments.length ? suffix : '';
/**
* Changes processor.
*
* @param {Object} changed Properties that have to be changed.
* @returns {That} What ever the value of `this` is.
* @api public
*/
return function change(changed) {
var currently, previously
, that = this
, key;
if (!changed) return that;
for (key in changed) {
if (key in that && that[key] !== changed[key]) {
currently = changed[key];
previously = that[key];
that[key] = currently;
that.emit(key + suffix, currently, previously);
}
}
return that;
};
};