remove Method
Removes the value associated with the specified key
@param key: string
The key for which to remove the value
API
remove(key: string): void;
Example
import {memoryStorage} from '@bitfiber/rx';
const ms = memoryStorage();
ms.remove('key');