Commit 0b75c084 authored by Nick Stenning's avatar Nick Stenning

Remove leading whitespace from annotation-metadata.js

parent 6e25ab1c
......@@ -2,7 +2,7 @@
* Utility functions for querying annotation metadata.
*/
/** Extract a URI, domain and title from the given domain model object.
/** Extract a URI, domain and title from the given domain model object.
*
* @param {object} annotation An annotation domain model object as received
* from the server-side API.
......@@ -10,7 +10,7 @@
* uri, domain and title.
*
*/
function extractDocumentMetadata(annotation) {
function extractDocumentMetadata(annotation) {
var document_;
var uri = annotation.uri;
var domain = new URL(uri).hostname;
......@@ -52,24 +52,24 @@
}
return document_;
}
}
/** Return `true` if the given annotation is a reply, `false` otherwise. */
function isReply(annotation) {
/** Return `true` if the given annotation is a reply, `false` otherwise. */
function isReply(annotation) {
return (annotation.references || []).length > 0;
}
}
/** Return `true` if the given annotation is new, `false` otherwise.
/** Return `true` if the given annotation is new, `false` otherwise.
*
* "New" means this annotation has been newly created client-side and not
* saved to the server yet.
*/
function isNew(annotation) {
function isNew(annotation) {
return !annotation.id;
}
}
module.exports = {
module.exports = {
extractDocumentMetadata: extractDocumentMetadata,
isReply: isReply,
isNew: isNew,
};
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment