UNPKG

bootstrap-vue-3

Version:

Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript

5 lines (4 loc) 322 B
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types export const arrayIncludes = (array: any[], value: any) => array.indexOf(value) !== -1 export const from = (...args: any[]): any[] => Array.from([...args]) export const concat = (...args: any[]): any[] => Array.prototype.concat.apply([], args)