frintjs/frint

Proposal: frint-data interop with Observable.from

Open

#394 aperta il 26 dic 2017

Vedi su GitHub
 (0 commenti) (1 reazione) (0 assegnatari)JavaScript (37 fork)batch import
good first issuehelp wantedproposal

Metriche repository

Star
 (746 star)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

Currently

With frint-data, Models and Collections can be observed via .get$():

const todo$ = todo.get$();

Proposal

As it is done for frint-store via #393, it would be useful to make them interoperable with Observable.from as per the spec on TC39: https://github.com/tc39/proposal-observable#observablefrom

const todo$ = Observable.from(todo);

Guida contributor