Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/npm-registry-client/lib/attempt.js')
-rw-r--r--deps/npm/node_modules/npm-registry-client/lib/attempt.js11
1 files changed, 7 insertions, 4 deletions
diff --git a/deps/npm/node_modules/npm-registry-client/lib/attempt.js b/deps/npm/node_modules/npm-registry-client/lib/attempt.js
index 7f289efeb86..d41bbc4fae8 100644
--- a/deps/npm/node_modules/npm-registry-client/lib/attempt.js
+++ b/deps/npm/node_modules/npm-registry-client/lib/attempt.js
@@ -1,16 +1,19 @@
-var retry = require("retry")
+var retry = require('retry')
module.exports = attempt
-function attempt(cb) {
+function attempt (cb) {
// Tuned to spread 3 attempts over about a minute.
// See formula at <https://github.com/tim-kos/node-retry>.
var operation = retry.operation(this.config.retry)
var client = this
operation.attempt(function (currentAttempt) {
- client.log.info("attempt", "registry request try #"+currentAttempt+
- " at "+(new Date()).toLocaleTimeString())
+ client.log.info(
+ 'attempt',
+ 'registry request try #' + currentAttempt +
+ ' at ' + (new Date()).toLocaleTimeString()
+ )
cb(operation)
})