All files / advanced-spawn-async/lib/functions/main index.ts

100% Statements 4/4
100% Branches 0/0
100% Functions 1/1
100% Lines 4/4
1 2 3 4 5 6 71x   1x   1x 7x  
import { spawn } from 'child_process'
import { Options } from '../../types'
import callSpawn from '../core'
 
export = (command: string, args?: string[], options?: Options) =>
  callSpawn(spawn, command, args, options)