2023-08-28 10:43:09 +00:00
|
|
|
/**
|
|
|
|
* data-structure-typed
|
|
|
|
*
|
|
|
|
* @author Tyler Zeng
|
|
|
|
* @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
|
|
|
|
* @license MIT License
|
|
|
|
*/
|
2023-09-12 03:10:09 +00:00
|
|
|
import type {Thunk, ToThunkFn, TrlAsyncFn, TrlFn} from '../types';
|
2023-08-28 10:43:09 +00:00
|
|
|
|
2023-06-15 16:34:28 +00:00
|
|
|
export const uuidV4 = function () {
|
2023-08-11 14:46:43 +00:00
|
|
|
return 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'.replace(/[x]/g, function (c) {
|
2023-06-15 16:34:28 +00:00
|
|
|
const r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
|
|
|
|
return v.toString(16);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
export const arrayRemove = function <T>(array: T[], predicate: (item: T, index: number, array: T[]) => boolean): T[] {
|
|
|
|
let i = -1, len = array ? array.length : 0;
|
|
|
|
const result = [];
|
|
|
|
|
|
|
|
while (++i < len) {
|
|
|
|
const value = array[i];
|
|
|
|
if (predicate(value, i, array)) {
|
|
|
|
result.push(value);
|
|
|
|
Array.prototype.splice.call(array, i--, 1);
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
|
2023-08-15 17:35:16 +00:00
|
|
|
|
|
|
|
export const THUNK_SYMBOL = Symbol('thunk')
|
|
|
|
|
|
|
|
export const isThunk = (fnOrValue: any) => {
|
|
|
|
return typeof fnOrValue === 'function' && fnOrValue.__THUNK__ === THUNK_SYMBOL
|
|
|
|
}
|
|
|
|
|
|
|
|
export const toThunk = (fn: ToThunkFn): Thunk => {
|
|
|
|
const thunk = () => fn()
|
|
|
|
thunk.__THUNK__ = THUNK_SYMBOL
|
|
|
|
return thunk
|
|
|
|
}
|
|
|
|
|
|
|
|
export const trampoline = (fn: TrlFn) => {
|
|
|
|
const cont = (...args: [...Parameters<TrlFn>]) => toThunk(() => fn(...args))
|
|
|
|
|
|
|
|
return Object.assign(
|
|
|
|
(...args: [...Parameters<TrlFn>]) => {
|
|
|
|
let result = fn(...args)
|
|
|
|
|
|
|
|
while (isThunk(result) && typeof result === 'function') {
|
|
|
|
result = result()
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
},
|
|
|
|
{cont}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export const trampolineAsync = (fn: TrlAsyncFn) => {
|
|
|
|
const cont = (...args: [...Parameters<TrlAsyncFn>]) => toThunk(() => fn(...args))
|
|
|
|
|
|
|
|
return Object.assign(
|
|
|
|
async (...args: [...Parameters<TrlAsyncFn>]) => {
|
|
|
|
let result = await fn(...args)
|
|
|
|
|
|
|
|
while (isThunk(result) && typeof result === 'function') {
|
|
|
|
result = await result()
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
},
|
|
|
|
{cont}
|
|
|
|
)
|
2023-08-23 15:03:19 +00:00
|
|
|
}
|