Prettier fixes

This commit is contained in:
Behind The Math
2019-03-03 01:37:45 -05:00
parent 3c1a4b2e18
commit c13149626b
32 changed files with 1318 additions and 903 deletions

View File

@@ -1,21 +1,21 @@
module.exports = function(target) {
if (target == null) {
return null
return null;
}
var to = Object(target)
var to = Object(target);
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i]
var source = arguments[i];
if (source != null) {
for (var key in source) {
// Avoid bugs when hasOwnProperty is shadowed
if (Object.prototype.hasOwnProperty.call(source, key)) {
to[key] = source[key]
to[key] = source[key];
}
}
}
}
return to
}
return to;
};