@bacons/expo-metro-runtime
Version:
Tools for making experimental Metro bundler features work
15 lines • 645 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function openFileInEditor(file, lineNumber) {
if (__DEV__) {
// TODO: This is not a great URL since it now blocks users from accessing the `/open-stack-frame` url in their router
// ideally it would be something like `/_devtools/open-stack-frame`.
const baseUrl = window.location.protocol + "//" + window.location.host;
fetch(baseUrl + "/open-stack-frame", {
method: "POST",
body: JSON.stringify({ file, lineNumber }),
});
}
}
exports.default = openFileInEditor;
//# sourceMappingURL=index.js.map