feature: get nyc, babel and coveralls working

This commit is contained in:
harttle
2018-08-26 21:54:35 +08:00
parent d828c4021e
commit 31c39561c9
50 changed files with 361 additions and 482 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ export function uniq (arr) {
*/
export function isObject (value) {
const type = typeof value
return value != null && (type === 'object' || type === 'function')
return value !== null && (type === 'object' || type === 'function')
}
/*