New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

csvgeocode

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csvgeocode - npm Package Compare versions

Comparing version

to
2.0.1

bin/output.csv

2

package.json
{
"name": "csvgeocode",
"version": "2.0.0",
"version": "2.0.1",
"description": "Bulk geocode addresses in a CSV.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -206,16 +206,12 @@ var misc = require("./misc"),

csv.stringify(results,function(string){
try {
try {
output.write(csv.stringify(results),summarize);
output.write(string,summarize);
} catch(e) {
} catch(e) {
throw new TypeError("Second argument output needs to be a filename or a writeable stream.");
throw new TypeError("Second argument output needs to be a filename or a writeable stream.");
}
}
});
}

@@ -222,0 +218,0 @@