heroku-client
Advanced tools
Comparing version 3.0.5 to 3.0.6
'use strict' | ||
let _debugHeaders | ||
function debugHeaders (...args) { | ||
function debugHeaders () { | ||
try { | ||
if (!_debugHeaders) _debugHeaders = require('debug')('http') | ||
_debugHeaders(...args) | ||
_debugHeaders.apply(null, Array.prototype.slice.call(arguments)) | ||
} catch (err) {} | ||
@@ -12,6 +12,6 @@ } | ||
let _debug | ||
function debug (...args) { | ||
function debug () { | ||
try { | ||
if (!_debug) _debug = require('debug')('http') | ||
_debug(...args) | ||
_debug.apply(null, Array.prototype.slice.call(arguments)) | ||
} catch (err) {} | ||
@@ -18,0 +18,0 @@ } |
{ | ||
"name": "heroku-client", | ||
"description": "A wrapper for the Heroku v3 API", | ||
"version": "3.0.5", | ||
"version": "3.0.6", | ||
"author": "Jeff Dickey", | ||
@@ -6,0 +6,0 @@ "bugs": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18366