Skip to Content

$ Property Readonly

Allows subscribers to reactively observe value changes

API

readonly $: Observable<T>;

Example

import {map} from 'rxjs'; import {localStoragePart} from '@bitfiber/rx'; const lsPart = localStoragePart('key'); lsPart.$ .pipe(map(v => v * 2)) .subscribe(v => console.log(v));
Last updated on