All files / lib/util process.js

66.66% Statements 4/6
50% Branches 1/2
100% Functions 0/0
66.66% Lines 4/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 67x 7x 7x     7x
import { Config } from "./types";
 
export default typeof process !== 'undefined' ? process : {
  env: /** @type {Config} */({ NODE_ENV: 'development' }),
  argv: /** @type {string[]} */ ([]),
};