UNPKG

@buildable/events

Version:

Custom Events for Buildable

2 lines 162 B
export const sleep = (n: number) => new Promise(res => setTimeout(res, n)) export const stringify = (v: any) => v && typeof v === "object" ? JSON.stringify(v) : v