Skip to content

Instantly share code, notes, and snippets.

@syuhei176
Last active September 30, 2015 15:42
Show Gist options
  • Save syuhei176/4e0469d263f274a3cc39 to your computer and use it in GitHub Desktop.
Save syuhei176/4e0469d263f274a3cc39 to your computer and use it in GitHub Desktop.
Milkcocoa data length
dataStore.stream().next(function(err, data) {
if(err) throw err;
foo(data.length);
});
function foo(size) {
//ここでsizeを扱う
console.log(size);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment