UNPKG

bootstrap-vue

Version:

BootstrapVue, with over 40 plugins and more than 80 custom components, 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 WAI-AR

14 lines (11 loc) 291 B
import looseEqual from './loose-equal'; var looseIndexOf = function looseIndexOf(arr, val) { // Assumes that the first argument is an array for (var i = 0; i < arr.length; i++) { if (looseEqual(arr[i], val)) { return i; } } return -1; }; export default looseIndexOf;