mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 21:58:37 +00:00
12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
let time;
|
|
export function getTime() {
|
|
if (!time) {
|
|
throw new Error('no time set! use setTime to define a time source');
|
|
}
|
|
return time();
|
|
}
|
|
|
|
export function setTime(func) {
|
|
time = func;
|
|
}
|