Steve Rubin

Results 5 comments of Steve Rubin

I abandoned this fix because I realized that this is the same tool as the "Allocation sampling" tool that's already available with node.js debugging (via Chrome's chrome://inspect).

Did you see my above post? This tool is now integrated in Chrome's debugging tools directly (via chrome://inspect). I suspect that this repo is dead.

I'm not affiliated with the v8 team; I don't have any particular power to get this merged.

This bit me recently. I'd appreciate being able to specify a different memoize function for the two purposes. I guess I could do this using `memoizeOptions`: ```ts function memoizeInputArgs(fn) {...

I ended up with this slightly more fleshed-out version: ```ts type MemoizeFn = (func: Function, option1?: any, option2?: any, option3?: any) => any; export function myCreateSelectorCreator( memoizeResultFnArgs: MemoizeFn, memoizeResultFnArgsOptions: any[]...