Skip to content

Instantly share code, notes, and snippets.

@evernotegists
Created June 20, 2013 01:45
function stopSharingSingleNote(noteStore, noteGuid, callback) {
noteStore.stopSharingNote(noteGuid, function(obj) {
if (obj && obj.errorCode) {
console.log(obj);
} else {
callback(noteGuid);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment