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
change introspect function so that it can handle objects included
change introspect function so that it can handle recursive objects
parseLines improvement so that it can process more than one space b/w parameter name and data type
add support for curried functions multiline structure
e.g.
'use strict';constcurrdObj={common: {sum: (// Partial sum apply, use first argumentx// first argument which should support summation opertaion// Example: sum(1)// Returns: function(y) { return 1 + y })=>(// Apply curreied sum to second argumenty// second argument which should support summation operation// Example: sum(1)(2)// Returns: 3)=>(x+y)}};introspect(currdObj)
The text was updated successfully, but these errors were encountered:
introspect
function so that it can handle objects includedintrospect
function so that it can handle recursive objectsparseLines
improvement so that it can process more than one space b/w parameter name and data typee.g.
The text was updated successfully, but these errors were encountered: