Skip to content

Commit 5b90ac8

Browse files
author
Stephen Parente
committed
Fixed typo
1 parent 3fd558f commit 5b90ac8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function fetch(url, cb, path) {
88
if (!cb) cb = function() {};
99
path = path || false;
1010

11-
var firebase = new Firebase(firebaseUrl);
11+
var firebase = new Firebase(url);
1212

1313
firebase.on('value', function(snap) {
1414
var value = snap.val();

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firebase-to-csv",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Convert firebase database to comma separated values",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)