mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 22:10:41 -07:00
feature: get nyc, babel and coveralls working
This commit is contained in:
@@ -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')
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user