6 lines
147 B
TypeScript
6 lines
147 B
TypeScript
export function now() {
|
|
return new Date().getTime() / 1000;
|
|
}
|
|
export function stream(...text: string[]) {
|
|
return new Blob(text).stream();
|
|
} |