1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-05 11:43:16 +00:00
TiddlyWiki5/core/modules/filters/count.js
jeremy@jermolene.com 3f68b13699 First commit
2022-08-30 18:01:46 +01:00

27 lines
447 B
JavaScript

/*\
title: $:/core/modules/filters/count.js
type: application/javascript
module-type: newfilteroperator
Filter operator returning the number of entries in the current list.
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
Export our filter function
*/
exports.count = function(source,operator,options) {
var count = 0;
source(function(tiddler,title) {
count++;
});
return [count];
};
})();