UNPKG

vuikit

Version:

A Vuejs component library based on UIkit

17 lines (15 loc) 244 B
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic * @license MIT */ /* * Iterate over Object properties */ export default function (obj, cb) { for (var key in obj) { if (cb.call(obj[key], obj[key], key) === false) { break } } }