UNPKG

weighted-pick

Version:

A library to pick random elements with weighted probability.

14 lines (12 loc) 249 B
import {defineConfig} from 'vitest/config'; import AutoImport from 'unplugin-auto-import/vite'; export default defineConfig({ test: { include: ['./**/*.test.js'], }, plugins: [ AutoImport({ imports: ['vitest'], }), ], });