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 file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i was creating an object and needed to assign to a value an object which processed data and did not define fields upon the child object for data fields which did not meet certain criteria. rather than a mutable solution, if (x) { object[key] = value; }, i instead opted for this immutable "toy".
i was creating an object and needed to assign to a value an object which processed data and did not define fields upon the child object for data fields which did not meet certain criteria. rather than a mutable solution,
if (x) { object[key] = value; }
, i instead opted for this immutable "toy".