From 82f275b4d2c567db47b1e865df186c81a58a58d6 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 e403727a..60cb7f0e 100644 --- a/lib/utils/utils.js +++ b/lib/utils/utils.js @@ -353,31 +353,31 @@ function getHexBalanceFromString(balanceString, web3) { } 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,