UNPKG

gridsome

Version:

A JAMstack framework for building blazing fast websites with Vue.js

8 lines (6 loc) 248 B
export const isDef = v => v !== undefined && v !== null export const isNil = v => v === undefined || v === null export const isFunc = v => typeof v === 'function' export function isObject (obj) { return obj !== null && typeof obj === 'object' }