Comparing version 1.4.0 to 1.4.1
@@ -107,4 +107,4 @@ /* vim:set ts=2 sw=2 sts=2 expandtab */ | ||
Ftp.prototype.setDebugMode = function(debugOn) { | ||
console.warning('`setDebugMode` is deprecated and will be removed in the ' + | ||
'future. For debugging, set the DEBUG env variable to 1.'); | ||
console.warn('`setDebugMode` is deprecated and will be removed in the ' + | ||
'future. For debugging, set the DEBUG env variable to 1.'); | ||
this.debugMode = (debugOn !== false); | ||
@@ -111,0 +111,0 @@ }; |
{ | ||
"name": "jsftp", | ||
"id": "jsftp", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "A sane FTP client implementation for NodeJS", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
@@ -132,4 +132,4 @@ jsftp [![Build Status](https://secure.travis-ci.org/sergi/jsftp.png)](http://travis-ci.org/sergi/jsftp) <a href="http://flattr.com/thing/1452098/" target="_blank"><img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a> | ||
ftp.list(remoteCWD, function(err, res) { | ||
res.forEach(function(file) { | ||
console.log(file.name); | ||
res.forEach(function(line) { | ||
console.log(line); | ||
}); | ||
@@ -136,0 +136,0 @@ // Prints something like |
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
41534
16