exprs-rx
v0.0.0
Published
Expressions for RxJS
Downloads
3
Readme
Regular Expressions for reactive streams in RxJS
RxJS implementation of Regular Expressions for Reactive Streams
Install
npm i exprs-rx
Use
import { exec } from 'exprs-rx';
// const A = ...
// const B = ...
// const C = ...
exec('AB*C', { A, B, C })
.pipe(
// ...
)
.subscribe(console.log);
(c) Kostia Palchyk