parallel.es icon indicating copy to clipboard operation
parallel.es copied to clipboard

ES6 function parameter destructuring support

Open MichaReiser opened this issue 9 years ago • 0 comments

ES6 allows destructuring of function parameters, e.g.

export function knightTours(startPath, { board, boardSize }) {}

Such a function is currently not correctly seralized / deserialized and therefore fails when being executed on a worker.

Add support for functions using destructuring.

MichaReiser avatar Sep 23 '16 07:09 MichaReiser