frontend/.pnpm-store/v3/files/ef/46164b492f619b1d71ab52846e1196e3b319d71b736018028452a25b63baf2020da15eec6cdda821e78cc22ec227285672386c47817885de7216d498d54907

12 lines
358 B
Plaintext

import { async } from '../scheduler/async';
import { map } from './map';
export function timestamp(scheduler = async) {
return map((value) => new Timestamp(value, scheduler.now()));
}
export class Timestamp {
constructor(value, timestamp) {
this.value = value;
this.timestamp = timestamp;
}
}
//# sourceMappingURL=timestamp.js.map