flipper-common
Version:
Server & UI shared Flipper utilities
16 lines • 463 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
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.isTest = void 0;
function isTest() {
return typeof process !== 'undefined' && !!process.env.JEST_WORKER_ID;
}
exports.isTest = isTest;
//# sourceMappingURL=isTest.js.map