frontend/.pnpm-store/v3/files/b8/728d07d905d8ea5c2f5ef1b192b3a1c3074fc6d2f887301cb91a2b32b781b5afef5bfe18c9a44ec46e70a7657c9fab44e5599832ac2cf89108aabae5ba485a

19 lines
574 B
Plaintext

/** PURE_IMPORTS_START _scheduler_async,_map PURE_IMPORTS_END */
import { async } from '../scheduler/async';
import { map } from './map';
export function timestamp(scheduler) {
if (scheduler === void 0) {
scheduler = async;
}
return map(function (value) { return new Timestamp(value, scheduler.now()); });
}
var Timestamp = /*@__PURE__*/ (function () {
function Timestamp(value, timestamp) {
this.value = value;
this.timestamp = timestamp;
}
return Timestamp;
}());
export { Timestamp };
//# sourceMappingURL=timestamp.js.map