redux-devtools/packages/redux-devtools-trace-monitor/src/react-error-overlay/utils/isInternalFile.js
Zalmoxisus d6a0e13d3b Move StackTraceTab and react-error-overlay
From zalmoxisus/remotedev-app/pull/43
2018-12-13 03:38:24 +02:00

22 lines
563 B
JavaScript

/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/* @flow */
function isInternalFile(sourceFileName: ?string, fileName: ?string) {
return (
sourceFileName == null ||
sourceFileName === '' ||
sourceFileName.indexOf('/~/') !== -1 ||
sourceFileName.indexOf('/node_modules/') !== -1 ||
sourceFileName.trim().indexOf(' ') !== -1 ||
fileName == null ||
fileName === ''
);
}
export { isInternalFile };