UNPKG

bootstrap-vue

Version:

BootstrapVue, with more than 85 custom components, over 45 plugins, several custom directives, and over 300 icons, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated W

8 lines 251 B
// Math utilty functions export var mathMin = Math.min; export var mathMax = Math.max; export var mathAbs = Math.abs; export var mathCeil = Math.ceil; export var mathFloor = Math.floor; export var mathPow = Math.pow; export var mathRound = Math.round;