104. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/2/2017 1:40:07 PM 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.

104.1 Files compared

# Location File Last Modified
1 chef-repo.zip\chef-repo\project_cookbooks\mocks\files\default\node-mocks\nodeMockServices-1.3.0.52.zip\node_modules\bunyan\node_modules\mv\node_modules\mkdirp\node_modules\minimist\test long.js Tue Jun 25 07:52:24 2013 UTC
2 chef-repo.zip\chef-repo\project_cookbooks\mocks\files\default\node-mocks\nodeMockServices-1.3.0.52.zip\node_modules\bunyan\node_modules\mv\node_modules\mkdirp\node_modules\minimist\test long.js Mon Oct 2 15:47:22 2017 UTC

104.2 Comparison summary

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

104.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

104.4 Active regular expressions

No regular expressions were active.

104.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   });