UNPKG

tiddlywiki

Version:
26 lines (18 loc) 389 B
/*\ title: $:/core/modules/macros/changecount.js type: application/javascript module-type: macro Macro to return the changecount for the current tiddler \*/ "use strict"; /* Information about this macro */ exports.name = "changecount"; exports.params = []; /* Run the macro */ exports.run = function() { return this.wiki.getChangeCount(this.getVariable("currentTiddler")) + ""; };