You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 20, 2018. It is now read-only.
Change transducers implementation to support "Official Transformer Protocol" discussed in cognitect-labs/transducers-js#20 . Both transducers.js and transducers-js have been updated to support it.
Summary of changes:
// anywhere you use a transformer// (including transducer implementations)varxf={init: function()step: function(acc,item)result: function(acc)}// becomesvarxf={'@@transducer/init': function()'@@transducer/step': function(acc,item)'@@transducer/result': function(acc)}// reduced wrapper object changes from {
value: acc,__transducers_reduced__: true}// to{'@@transducer/value': acc,'@@transducer/reduced':true}
The text was updated successfully, but these errors were encountered:
Change transducers implementation to support "Official Transformer Protocol" discussed in cognitect-labs/transducers-js#20 . Both transducers.js and transducers-js have been updated to support it.
Summary of changes:
The text was updated successfully, but these errors were encountered: