Flow Coverage Report - src/utils/location.js
Go back to all files summary.
Filename
Percent
Total
Covered
Uncovered
src/utils/location.js
100 %
13
13
0
Uncovered Locations
ES6/ES7
JavaScript
None
import type { Location, SourceId } from "../types"; type IncompleteLocation = { sourceId: SourceId, line: ?number, column: ?number, sourceUrl?: string }; export function createLocation({ sourceId, line, column, sourceUrl }: IncompleteLocation): Location { return { sourceId, line, column, sourceUrl: sourceUrl || null }; }
{"expressions":{"covered_count":13,"uncovered_count":0,"uncovered_locs":[]},"percent":100}