• 0 Posts
  • 47 Comments
Joined 2 years ago
cake
Cake day: August 7th, 2023

help-circle




  • I mean I was trying to solve a problem t’other day (hobbyist) - it told me to create a

    function foo(bar): await object.foo(bar)

    then in object

    function foo(bar): _foo(bar)

    function _foo(bar): original_object.foo(bar)

    like literally passing a variable between three wrapper functions in two objects that did nothing except pass the variable back to the original function in an infinite loop

    add some layers and complexity and it’d be very easy to get lost