minor adjustment to readme
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm2015 / internal / operators / timestamp.js
1 import { async } from '../scheduler/async';
2 import { map } from './map';
3 export function timestamp(scheduler = async) {
4     return map((value) => new Timestamp(value, scheduler.now()));
5 }
6 export class Timestamp {
7     constructor(value, timestamp) {
8         this.value = value;
9         this.timestamp = timestamp;
10     }
11 }
12 //# sourceMappingURL=timestamp.js.map