Open Dimava opened 9 months ago
Type definitions define find as
find
find(options?: FindOptions): string[];
meaning there should be a valid
jp.find()
overload with 0 arguments
However, it crashes with
throw new Error( ^ Error: Argument "path" passed to find([path], options) must be a string. Received undefined
Considering how often I use just jp.find('.') I encounter this from time to time
jp.find('.')
Type definitions define
find
asmeaning there should be a valid
overload with 0 arguments
However, it crashes with