From 98e61a5cb0292c7abbb6277f8ac62c90a11fef92 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Fri, 6 Jul 2018 18:06:55 +0300 Subject: [PATCH] simplify utils exports --- lib/utils/utils.js | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/lib/utils/utils.js b/lib/utils/utils.js index 143b03ece..62036d19c 100644 --- a/lib/utils/utils.js +++ b/lib/utils/utils.js @@ -311,31 +311,31 @@ function buildUrlFromConfig (configObj){ } module.exports = { - joinPath: joinPath, - dirname: dirname, - filesMatchingPattern: filesMatchingPattern, - fileMatchesPattern: fileMatchesPattern, - recursiveMerge: recursiveMerge, - checkIsAvailable: checkIsAvailable, - httpGet: httpGet, - httpsGet: httpsGet, - httpGetJson: httpGetJson, - httpsGetJson: httpsGetJson, - hexToNumber: hexToNumber, + joinPath, + dirname, + filesMatchingPattern, + fileMatchesPattern, + recursiveMerge, + checkIsAvailable, + httpGet, + httpsGet, + httpGetJson, + httpsGetJson, + hexToNumber, pingEndpoint, - decodeParams: decodeParams, - runCmd: runCmd, + decodeParams, + runCmd, cd: cd, sed: sed, exit: exit, - downloadFile: downloadFile, - extractTar: extractTar, - extractZip: extractZip, - proposeAlternative: proposeAlternative, + downloadFile, + extractTar, + extractZip, + proposeAlternative, pwd: pwd, getExternalContractUrl, - toChecksumAddress: toChecksumAddress, - sha3: sha3, + toChecksumAddress, + sha3, normalizeInput, buildUrl, buildUrlFromConfig