Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 1x | function fold (updates, state, event) { return Promise .all(updates.map(update => update(state, event))) } function sin () { let key = Math.random().toString(16).slice(4) let updates = Array.from(arguments).slice(1, arguments.length) let signal = arguments[0] if (!signal || !signal.emit) { throw new Error('[Sin] requires an emitter source') } return (state, event) => { if (event.type === key) { return event.payload } Promise .resolve(fold(updates, state, event)) .then(res => { let collected = res .reduce(newState => ({ state, ...newState }), state) signal.emit({ type: key, payload: collected }) }) return state } } export default sin |