[improvement] update eslint config (#2288)

This commit is contained in:
neverland
2018-12-14 14:24:23 +08:00
committed by GitHub
parent d2751ffdfa
commit 16e4889a92
141 changed files with 6387 additions and 7536 deletions
+6 -6
View File
@@ -1,4 +1,5 @@
import { isDef, isObj } from './';
/* eslint-disable no-use-before-define */
import { isDef, isObj } from '.';
const { hasOwnProperty } = Object.prototype;
@@ -17,10 +18,9 @@ function assignKey(to, from, key) {
}
export default function assign(to, from) {
for (const key in from) {
if (hasOwnProperty.call(from, key)) {
assignKey(to, from, key);
}
}
Object.keys(from).forEach(key => {
assignKey(to, from, key);
});
return to;
}