clonegur/backend/utils/utils.ts

6 lines
147 B
TypeScript
Raw Normal View History

2023-06-29 14:31:25 +00:00
export function now() {
return new Date().getTime() / 1000;
}
export function stream(...text: string[]) {
return new Blob(text).stream();
}