UNPKG

@ocelot-consulting/hummus-toc

Version:

An extension for HummusJS to add Table of Contents (including bookmarks).

9 lines (7 loc) 208 B
const countOutline = outline => outline.reduce((acc, curr) => { if (curr.children === undefined) { return acc + 1 } return acc + countOutline(curr.children) + 1 }, 0) module.exports = countOutline