Newer
Older
CVSS_3.0_GUI / dist / CVSS_3.0_Calc-1.0.0-linux-x64 / node_modules / nwjs-builder-phoenix / node_modules / dir-compare / defaultCompareFileCallback.js
root on 7 May 2019 413 bytes Initial commit
  1. 'use strict'
  2. var fc = require('./filecompare')
  3.  
  4. var compareSync = function (filePath1, fileStat1, filePath2, fileStat2, options) {
  5. return fc.compareSync(filePath1, filePath2);
  6. };
  7.  
  8. var compareAsync = function (filePath1, fileStat1, filePath2, fileStat2, options) {
  9. return fc.compareAsync(filePath1, filePath2);
  10. };
  11.  
  12. module.exports = {
  13. compareSync: compareSync,
  14. compareAsync: compareAsync
  15. }
  16.  
Buy Me A Coffee