32 lines
810 B
JavaScript
32 lines
810 B
JavaScript
|
//@ts-check
|
||
|
|
||
|
import wait from "./wait.mjs";
|
||
|
|
||
|
/**
|
||
|
* @template T
|
||
|
* @param {T} [value]
|
||
|
* @returns {Promise<T>}
|
||
|
*/
|
||
|
// @ts-ignore
|
||
|
const identity = (value) => Promise.resolve(value);
|
||
|
|
||
|
/**
|
||
|
* Waits the specified amount of time before returning the value
|
||
|
* @param {number} _durationMs Duration, in milliseconds. Defaults to 1 second
|
||
|
* @returns
|
||
|
*/
|
||
|
const fakeWait = (_durationMs = 1000) => identity;
|
||
|
|
||
|
import isLocalHost from "./isLocalHost.mjs";
|
||
|
|
||
|
/**
|
||
|
* useful to check for transitions while developing styles, if the loading screen
|
||
|
* disappears too fast for example.
|
||
|
* @template T
|
||
|
* @param {number} durationMs Duration, in milliseconds. Defaults to 1 second
|
||
|
* @returns {(value?: T | undefined) => Promise<T>}
|
||
|
*/
|
||
|
export const waitIfLocalHost = isLocalHost ? wait : fakeWait;
|
||
|
|
||
|
export default waitIfLocalHost;
|