Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
robertarnesson authored Oct 18, 2016
1 parent 8a3c194 commit d4642b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ window.FirebasePlugin.getByteArray("key", function(bytes) {
// a Base64 encoded string that represents the value for "key"
console.log(bytes.base64);
// a numeric array containing the values of the byte array (i.e. [0xFF, 0x00])
bytes.array;
console.log(bytes.array);
}, function(error) {
console.error(error);
});
Expand All @@ -203,7 +203,7 @@ window.FirebasePlugin.getByteArray("key", "namespace", function(bytes) {
// a Base64 encoded string that represents the value for "key"
console.log(bytes.base64);
// a numeric array containing the values of the byte array (i.e. [0xFF, 0x00])
bytes.array;
console.log(bytes.array);
}, function(error) {
console.error(error);
});
Expand Down

0 comments on commit d4642b2

Please sign in to comment.