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
This would be a low-level function that given an object, do a transformation on it. This would be used within most lib methods. Something like:
// conduit-rxjs/lib/bindNextimport{mapObject}from'./mapObject';exportfunctionbindNext(source){// if is object...returnmapObject(source,functionmapValue(value,key){...},functionmapKey(value,key){...});}
The text was updated successfully, but these errors were encountered:
Could also just use lodash functions, as either inspiration or as a dependency. But I don't know if I want anything other than rxjs to be a peer dependency.
csbasham opened this issue on Feb 22, 2017
This would be a low-level function that given an object, do a transformation on it. This would be used within most
lib
methods. Something like:The text was updated successfully, but these errors were encountered: