This repository was archived by the owner on Feb 8, 2020. It is now read-only.

Description
> parseFunction(function (a, b) { return a > b })
{ name: 'anonymous',
body: ' ',
params: 'unction (a, b) { return ',
args: [ 'unction (a', 'b) { return ' ] }
Functions that contain > character are loosely considered arrow functions in walk, and later in build function params and args properties are computed incorrectly because of that. I'm not sure how you would fix that.