UNPKG

vuikit

Version:

A Vuejs component library based on UIkit

17 lines (14 loc) 264 B
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic * @license MIT */ /* * Converts the value to a string */ export default function (val) { if (val === undefined || val === null) { return '' } return (val.toString || Object.prototype.toString).call(val) }