UNPKG
react-scanner-orbit
Version:
latest (3.0.1)
3.0.1
3.0.0
2.0.0
1.3.3
1.3.1
1.3.0
Extract React components and props usage from code.
react-scanner-orbit
/
src
/
processors
/
raw-report.js
9 lines
(7 loc)
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
default
function
rawReportProcessor
(
) {
return
(
options
) =>
(
{ report, output }
) =>
{
output
(report, options && options.
outputTo
);
return
report; }; }