Skip to Content

remove Method

Removes the current value

API

remove(): void;

Example

import {KeyValueSourcePart, MemoryStorage} from '@bitfiber/rx'; // Creates a memory source part const source = new KeyValueSourcePart<number>('someKey', new MemoryStorage()); // Removes the current source value source.remove();
Last updated on