export-facetime-calls
Advanced tools
Comparing version 0.1.0 to 0.2.0
@@ -0,1 +1,2 @@ | ||
#!/usr/bin/env node | ||
/* use strict */ | ||
@@ -70,3 +71,3 @@ | ||
} | ||
const EXPORT_SEPERATOR = "\t"; | ||
const EXPORT_SEPARATOR = "\t"; | ||
@@ -79,3 +80,3 @@ const db = new Database(DB_PATH); | ||
console.log([...EXPORT_FRIENDLY_NAMES.values()].join(EXPORT_SEPERATOR)); | ||
console.log([...EXPORT_FRIENDLY_NAMES.values()].join(EXPORT_SEPARATOR)); | ||
for (var record of records) { | ||
@@ -85,3 +86,3 @@ let fieldCount = 0; | ||
if (++fieldCount != 1) { | ||
process.stdout.write(EXPORT_SEPERATOR); | ||
process.stdout.write(EXPORT_SEPARATOR); | ||
} | ||
@@ -88,0 +89,0 @@ |
{ | ||
"license": "MIT", | ||
"main": "index.js", | ||
"bin": "./index.js", | ||
"name": "export-facetime-calls", | ||
@@ -10,3 +11,3 @@ "repository": { | ||
"author": "Mike de Boer <info@mikedeboer.nl>", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"dependencies": { | ||
@@ -13,0 +14,0 @@ "better-sqlite3": "^5.4.3" |
4636
106