Bug - Fixed jsref does not match on full camelCase js function names

katyarn

Member
The jsref cli command will match full ash function names with snake case instead of camel case which doesn't match what it returns.
Examples:
Code:
> jsref appearanceRates

> jsref appearanceRate

> jsref appearance

{ [monster: string]: number } appearanceRates(Location)
{ [monster: string]: number } appearanceRates(Location, boolean)

> jsref appearance_rate

{ [monster: string]: number } appearanceRates(Location)
{ [monster: string]: number } appearanceRates(Location, boolean)
 

gausie

D̰͕̝͚̤̥̙̐̇̑͗̒e͍͔͎͈͔ͥ̉̔̅́̈l̠̪̜͓̲ͧ̍̈́͛v̻̾ͤe͗̃ͥ̐̊ͬp̔͒ͪ
Staff member
Top