source: trip-planner-front/node_modules/istanbul-lib-source-maps/lib/transform-utils.js@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 478 bytes
Line 
1/*
2 Copyright 2015, Yahoo Inc.
3 Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
4 */
5'use strict';
6
7function getUniqueKey(pathname) {
8 return pathname.replace(/[\\/]/g, '_');
9}
10
11function getOutput(cache) {
12 return Object.values(cache).reduce(
13 (output, { file, mappedCoverage }) => ({
14 ...output,
15 [file]: mappedCoverage
16 }),
17 {}
18 );
19}
20
21module.exports = { getUniqueKey, getOutput };
Note: See TracBrowser for help on using the repository browser.