UNPKG

vuikit

Version:

A Vuejs component library based on UIkit

17 lines (14 loc) 267 B
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic * @license MIT */ /* * Determines if the value is a function */ export default function (val) { return toString(val) === '[object Function]' } function toString (val) { return Object.prototype.toString.call(val) }