Initial
This commit is contained in:
32
resources/app/node_modules/intl-messageformat/lib/utils.js
generated
vendored
Normal file
32
resources/app/node_modules/intl-messageformat/lib/utils.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
Copyright (c) 2014, Yahoo! Inc. All rights reserved.
|
||||
Copyrights licensed under the New BSD License.
|
||||
See the accompanying LICENSE file for terms.
|
||||
*/
|
||||
|
||||
/* jslint esnext: true */
|
||||
|
||||
"use strict";
|
||||
exports.extend = extend;
|
||||
var hop = Object.prototype.hasOwnProperty;
|
||||
|
||||
function extend(obj) {
|
||||
var sources = Array.prototype.slice.call(arguments, 1),
|
||||
i, len, source, key;
|
||||
|
||||
for (i = 0, len = sources.length; i < len; i += 1) {
|
||||
source = sources[i];
|
||||
if (!source) { continue; }
|
||||
|
||||
for (key in source) {
|
||||
if (hop.call(source, key)) {
|
||||
obj[key] = source[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return obj;
|
||||
}
|
||||
exports.hop = hop;
|
||||
|
||||
//# sourceMappingURL=utils.js.map
|
||||
Reference in New Issue
Block a user