mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
947751fbe4
Summary: Changelog: [Internal] Reviewed By: SamChou19815 Differential Revision: D43772813 fbshipit-source-id: 563c6f3dfb00bc9247ac0505d7f841afad1eb43e
27 lines
605 B
JavaScript
27 lines
605 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const getDevServer = require('./getDevServer');
|
|
|
|
function openFileInEditor(file: string, lineNumber: number) {
|
|
// $FlowFixMe[unused-promise]
|
|
fetch(getDevServer().url + 'open-stack-frame', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({file, lineNumber}),
|
|
});
|
|
}
|
|
|
|
module.exports = openFileInEditor;
|