20. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/24/2017 6:38:25 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

20.1 Files compared

# Location File Last Modified
1 CHAMP_VA1.zip\CHAMP_VA1\node_modules\gulp\node_modules\vinyl-fs\node_modules\mkdirp\node_modules\minimist\test long.js Mon Oct 16 21:06:50 2017 UTC
2 CHAMP_VA1.zip\CHAMP_VA1\node_modules\gulp\node_modules\vinyl-fs\node_modules\mkdirp\node_modules\minimist\test long.js Mon Oct 23 16:39:27 2017 UTC

20.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 54
Changed 2 8
Inserted 0 0
Removed 0 0

20.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

20.4 Active regular expressions

No regular expressions were active.

20.5 Comparison detail

  1   var test =  require(' tape');
  2   var parse  = require( '../');
  3  
  4   test('long  opts', fu nction (t)  {
  5       t.deep Equal(
  6           pa rse([ '--b ool' ]),
  7           {  bool : tru e, _ : []  },
  8           'l ong boolea n'
  9       );
  10       t.deep Equal(
  11           pa rse([ '--p ow', 'xixx le' ]),
  12           {  pow : 'xix xle', _ :  [] },
  13           'l ong captur e sp'
  14       );
  15       t.deep Equal(
  16           pa rse([ '--p ow=xixxle'  ]),
  17           {  pow : 'xix xle', _ :  [] },
  18           'l ong captur e eq'
  19       );
  20       t.deep Equal(
  21             parse([ '- -host', 'l ocalhost',  '--port',  ' PORT ' ]),
  22             { host : ' localhost' , port :  PORT , _ : [] } ,
  23           'l ong captur es sp'
  24       );
  25       t.deep Equal(
  26             parse([ '- -host=loca lhost', '- -port= PORT ' ]),
  27             { host : ' localhost' , port :  PORT , _ : [] } ,
  28           'l ong captur es eq'
  29       );
  30       t.end( );
  31   });