- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
13 lines
856 B
JavaScript
13 lines
856 B
JavaScript
"use strict";
|
|
exports.__esModule = true;
|
|
exports.unsafeUniformArrayIntDistribution = void 0;
|
|
var ArrayInt_1 = require("./internals/ArrayInt");
|
|
var UnsafeUniformArrayIntDistributionInternal_1 = require("./internals/UnsafeUniformArrayIntDistributionInternal");
|
|
function unsafeUniformArrayIntDistribution(from, to, rng) {
|
|
var rangeSize = (0, ArrayInt_1.trimArrayIntInplace)((0, ArrayInt_1.addOneToPositiveArrayInt)((0, ArrayInt_1.substractArrayIntToNew)(to, from)));
|
|
var emptyArrayIntData = rangeSize.data.slice(0);
|
|
var g = (0, UnsafeUniformArrayIntDistributionInternal_1.unsafeUniformArrayIntDistributionInternal)(emptyArrayIntData, rangeSize.data, rng);
|
|
return (0, ArrayInt_1.trimArrayIntInplace)((0, ArrayInt_1.addArrayIntToNew)({ sign: 1, data: g }, from));
|
|
}
|
|
exports.unsafeUniformArrayIntDistribution = unsafeUniformArrayIntDistribution;
|