UNPKG

vuikit

Version:

A Vuejs component library based on UIkit

14 lines (12 loc) 239 B
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic * @license MIT */ /* * Determines if the value is an object */ export default function (val) { const type = typeof val return val !== null && (type === 'object' || type === 'function') }