UNPKG

ec-sri-invoice-signer

Version:
14 lines (13 loc) 365 B
/** * @returns A random UUID v4. */ declare const getRandomUuid: () => string; /** * @returns The current date in format `YYYY-MM-DDTHH:mm:ss.sss[-+]HH:mm`. */ declare const getDate: () => string; /** * Functional-like composer to compose functions */ declare function pipe<T>(functions: Function[]): (input: T) => T; export { getDate, getRandomUuid, pipe };