You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a file is empty, retrieveFile can return empty string. This is falsey, and today is erroneously interpreted as "no response," causing subsequent retrieveFile handlers to be invoked.
We can change retrieveFile to allow returning undefined and fix the logic to interpret empty string as empty file.
Note: Is a breaking change.
The text was updated successfully, but these errors were encountered:
node-source-map-support/source-map-support.js
Line 147 in 817f84b
node-source-map-support/source-map-support.js
Lines 129 to 135 in 817f84b
If a file is empty,
retrieveFile
can return empty string. This is falsey, and today is erroneously interpreted as "no response," causing subsequentretrieveFile
handlers to be invoked.We can change
retrieveFile
to allow returningundefined
and fix the logic to interpret empty string as empty file.Note: Is a breaking change.
The text was updated successfully, but these errors were encountered: