File size: 669 Bytes
f48efbb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { isFunction } from "$lib/utils/is.js";
import type { MaybeGetter } from "$lib/types.js";

/**
 * Extracts the value from a getter or a value.
 * Optionally, a default value can be provided.
 */
export function extract<T, D extends T>(
	value: MaybeGetter<T>,
	defaultValue?: D
): D extends undefined | null ? T : Exclude<T, undefined | null> | D {
	if (isFunction(value)) {
		const getter = value;
		const gotten = getter();
		// eslint-disable-next-line @typescript-eslint/no-explicit-any
		return (gotten ?? defaultValue ?? gotten) as any;
	}

	// eslint-disable-next-line @typescript-eslint/no-explicit-any
	return (value ?? defaultValue ?? value) as any;
}