Files
Fluxup_PAP/node_modules/open/open-main.js
2026-03-10 16:18:05 +00:00

17 lines
467 B
JavaScript

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
'use strict';
var open = require('./index.js');
module.exports = function(target, opts) {
if (process.env.REACT_DEBUGGER) {
if (opts.app) {
console.log("Debugger for React Native is configured. Skipping launch of " + opts.app);
}
return;
}
return open(target, opts);
};