« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/page/album-commentary.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/page/album-commentary.js')
-rw-r--r--src/page/album-commentary.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/page/album-commentary.js b/src/page/album-commentary.js
index a0ac8d9..50a2aa3 100644
--- a/src/page/album-commentary.js
+++ b/src/page/album-commentary.js
@@ -1,5 +1,6 @@
 // Album commentary page and index specifications.
 
+import {accumulateSum} from '../util/sugar.js';
 import {filterAlbumsByCommentary} from '../util/wiki-data.js';
 
 export function condition({wikiData}) {
@@ -93,8 +94,8 @@ export function writeTargetless({wikiData}) {
       words: entries.join(' ').split(' ').length,
     }));
 
-  const totalEntries = data.reduce((acc, {entries}) => acc + entries.length, 0);
-  const totalWords = data.reduce((acc, {words}) => acc + words, 0);
+  const totalEntries = accumulateSum(data, ({entries}) => entries.length);
+  const totalWords = accumulateSum(data, ({words}) => words);
 
   const page = {
     type: 'page',