aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/@vitest/utils/dist/helpers.d.ts
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
commitafa87af01c79a9baa539f2992d32154d2a4739bd (patch)
tree92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/@vitest/utils/dist/helpers.d.ts
parent3b927e84d200402281f68181cd4253bc77e5528d (diff)
downloadneko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'vanilla/node_modules/@vitest/utils/dist/helpers.d.ts')
-rw-r--r--vanilla/node_modules/@vitest/utils/dist/helpers.d.ts73
1 files changed, 0 insertions, 73 deletions
diff --git a/vanilla/node_modules/@vitest/utils/dist/helpers.d.ts b/vanilla/node_modules/@vitest/utils/dist/helpers.d.ts
deleted file mode 100644
index 493817b..0000000
--- a/vanilla/node_modules/@vitest/utils/dist/helpers.d.ts
+++ /dev/null
@@ -1,73 +0,0 @@
-import { Nullable, Arrayable } from './types.js';
-
-declare function nanoid(size?: number): string;
-
-declare function shuffle<T>(array: T[], seed?: number): T[];
-
-interface CloneOptions {
- forceWritable?: boolean;
-}
-interface ErrorOptions {
- message?: string;
- stackTraceLimit?: number;
-}
-
-/**
-* Get original stacktrace without source map support the most performant way.
-* - Create only 1 stack frame.
-* - Rewrite prepareStackTrace to bypass "support-stack-trace" (usually takes ~250ms).
-*/
-declare function createSimpleStackTrace(options?: ErrorOptions): string;
-declare function notNullish<T>(v: T | null | undefined): v is NonNullable<T>;
-declare function assertTypes(value: unknown, name: string, types: string[]): void;
-declare function isPrimitive(value: unknown): boolean;
-declare function slash(path: string): string;
-declare function cleanUrl(url: string): string;
-declare const isExternalUrl: (url: string) => boolean;
-/**
-* Prepend `/@id/` and replace null byte so the id is URL-safe.
-* This is prepended to resolved ids that are not valid browser
-* import specifiers by the importAnalysis plugin.
-*/
-declare function wrapId(id: string): string;
-/**
-* Undo {@link wrapId}'s `/@id/` and null byte replacements.
-*/
-declare function unwrapId(id: string): string;
-declare function withTrailingSlash(path: string): string;
-declare function isBareImport(id: string): boolean;
-declare function toArray<T>(array?: Nullable<Arrayable<T>>): Array<T>;
-declare function isObject(item: unknown): boolean;
-declare function getType(value: unknown): string;
-declare function getOwnProperties(obj: any): (string | symbol)[];
-declare function deepClone<T>(val: T, options?: CloneOptions): T;
-declare function clone<T>(val: T, seen: WeakMap<any, any>, options?: CloneOptions): T;
-declare function noop(): void;
-declare function objectAttr(source: any, path: string, defaultValue?: undefined): any;
-type DeferPromise<T> = Promise<T> & {
- resolve: (value: T | PromiseLike<T>) => void;
- reject: (reason?: any) => void;
-};
-declare function createDefer<T>(): DeferPromise<T>;
-/**
-* If code starts with a function call, will return its last index, respecting arguments.
-* This will return 25 - last ending character of toMatch ")"
-* Also works with callbacks
-* ```
-* toMatch({ test: '123' });
-* toBeAliased('123')
-* ```
-*/
-declare function getCallLastIndex(code: string): number | null;
-declare function isNegativeNaN(val: number): boolean;
-/**
-* Deep merge :P
-*
-* Will merge objects only if they are plain
-*
-* Do not merge types - it is very expensive and usually it's better to case a type here
-*/
-declare function deepMerge<T extends object = object>(target: T, ...sources: any[]): T;
-
-export { assertTypes, cleanUrl, clone, createDefer, createSimpleStackTrace, deepClone, deepMerge, getCallLastIndex, getOwnProperties, getType, isBareImport, isExternalUrl, isNegativeNaN, isObject, isPrimitive, nanoid, noop, notNullish, objectAttr, shuffle, slash, toArray, unwrapId, withTrailingSlash, wrapId };
-export type { DeferPromise };