Appearance
import getTypeOf from './getTypeOf' export const isNull = (target) => { return target === null && getTypeOf(target) === 'null' }
import { isNull } from 'vivace-tool' console.log(isNull(null)) // true console.log(isNull({})) // false