UNPKG

bootstrap-vue

Version:

BootstrapVue, with over 40 plugins and more than 80 custom components, provides one of the most comprehensive implementations of Bootstrap v4 components and grid system for Vue.js. With extensive and automated WAI-ARIA accessibility markup.

14 lines (12 loc) 435 B
// --- Static --- export var from = Array.from; export var isArray = Array.isArray; // --- Instance --- export var arrayIncludes = function arrayIncludes(array, value) { return array.indexOf(value) !== -1; }; export var concat = function concat() { for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } return Array.prototype.concat.apply([], args); };