Open
Description
I was sending in strings instead of numbers to the originalPositionFor
function. This works unless the strings aren't exactly in the mappings. E.g. originalPositionFor({line:"8", column:"10"})
would work if the sourcemap contained that exact entry, but if it instead contained line 8, column 8 and line 8 column 12, it wouldn't find the sourcemap.
Please mention that line and column MUST be number (not strings) in the readme documentation.