From 3bc2c5fabc3e6927b87fabb2ce20551a0cac59af Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Fri, 30 Jan 2026 20:56:38 +0000 Subject: [PATCH] Remove appply filter run prefix --- core/modules/filterrunprefixes/apply.js | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 core/modules/filterrunprefixes/apply.js diff --git a/core/modules/filterrunprefixes/apply.js b/core/modules/filterrunprefixes/apply.js deleted file mode 100644 index 42389947f..000000000 --- a/core/modules/filterrunprefixes/apply.js +++ /dev/null @@ -1,24 +0,0 @@ -/*\ -title: $:/core/modules/filterrunprefixes/apply.js -type: application/javascript -module-type: filterrunprefix - -Filter run prefix to make input titles available as variables when evaluating the filter run - -\*/ - -"use strict"; - -exports.apply = function(operationSubFunction) { - return function(results,source,widget) { - source = widget.wiki.makeTiddlerIterator([]); - var variables = {}, - counter = 1; - results.each(function(title) { - variables["$" + counter] = title; - counter++; - }); - results.clear(); - results.pushTop(operationSubFunction(source,widget.makeFakeWidgetWithVariables(variables))); - }; -};