mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
29 lines
574 B
JavaScript
29 lines
574 B
JavaScript
/**
|
|
* Copyright (c) 2016-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
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = function(
|
|
name: null | string,
|
|
source: any,
|
|
ownerName: null | string,
|
|
) {
|
|
return (
|
|
'\n in ' +
|
|
(name || 'Unknown') +
|
|
(source
|
|
? ' (at ' +
|
|
source.fileName.replace(/^.*[\\\/]/, '') +
|
|
':' +
|
|
source.lineNumber +
|
|
')'
|
|
: ownerName ? ' (created by ' + ownerName + ')' : '')
|
|
);
|
|
};
|