latest build

This commit is contained in:
Jeff Nusz 2016-09-01 16:08:44 -07:00
parent 9c8b0cf118
commit c1fe14659e
3 changed files with 22 additions and 13 deletions

View File

@ -675,10 +675,13 @@ return /******/ (function(modules) { // webpackBootstrap
extend: function extend(target) { extend: function extend(target) {
this.each(ARR_SLICE.call(arguments, 1), function (obj) { this.each(ARR_SLICE.call(arguments, 1), function (obj) {
for (var key in obj) { if (!this.isUndefined(obj)) {
if (!this.isUndefined(obj[key])) { var keys = Object.keys(obj);
target[key] = obj[key]; keys.forEach((function (key) {
} if (!this.isUndefined(obj[key])) {
target[key] = obj[key];
}
}).bind(this));
} }
}, this); }, this);
@ -687,10 +690,13 @@ return /******/ (function(modules) { // webpackBootstrap
defaults: function defaults(target) { defaults: function defaults(target) {
this.each(ARR_SLICE.call(arguments, 1), function (obj) { this.each(ARR_SLICE.call(arguments, 1), function (obj) {
for (var key in obj) { if (!this.isUndefined(obj)) {
if (this.isUndefined(target[key])) { var keys = Object.keys(obj);
target[key] = obj[key]; keys.forEach((function (key) {
} if (this.isUndefined(target[key])) {
target[key] = obj[key];
}
}).bind(this));
} }
}, this); }, this);
@ -725,11 +731,14 @@ return /******/ (function(modules) { // webpackBootstrap
} }
} }
} else { } else {
for (var key in obj) { if (this.isUndefined(obj)) return;
var keys = Object.keys(obj);
keys.forEach((function (key) {
if (itr.call(scope, obj[key], key) === this.BREAK) { if (itr.call(scope, obj[key], key) === this.BREAK) {
return; return;
} }
} }).bind(this));
} }
}, },

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long