export function isBibComment(n: any): n is BibComment {
    return n.type === "comment" && isArray(n.data);
}