Every new change
This commit is contained in:
12
node_modules/rxjs/_esm2015/internal/operators/timestamp.js
generated
vendored
Normal file
12
node_modules/rxjs/_esm2015/internal/operators/timestamp.js
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
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
|
Reference in New Issue
Block a user