aretherecookies-mobile/js/streams/LocationStream.js

13 lines
216 B
JavaScript
Raw Normal View History

2017-08-27 14:29:37 -05:00
// @flow
2018-04-22 11:29:08 -05:00
import { ReplaySubject } from 'rxjs';
2017-08-27 14:29:37 -05:00
const subject: ReplaySubject<Position> = new ReplaySubject();
2018-04-22 11:29:08 -05:00
export function emitter(val: ?Position) {
subject.next(val);
2018-04-22 11:29:08 -05:00
}
emitter(null);
export default subject;