/*\ title: $:/core/modules/filters/indexes.js type: application/javascript module-type: filteroperator Filter operator for returning the indexes of a data tiddler \*/ (function(){ /*jslint node: true, browser: true */ /*global $tw: false */ "use strict"; /* Export our filter function */ exports.indexes = function(source,operator,options) { var results = []; source(function(tiddler,title) { var data = options.wiki.getTiddlerData(title); if(data) { $tw.utils.pushTop(results,Object.keys(data)); } }); results.sort(); return results; }; })();