Commit 238de4d8 by Torkel Ödegaard

Merge pull request #162 from nixfloyd/master

Added currentAbove/Below, highestMax functions.
parents 5221db5a 66648903
...@@ -207,6 +207,20 @@ function (_) { ...@@ -207,6 +207,20 @@ function (_) {
}); });
addFuncDef({ addFuncDef({
name: 'currentAbove',
category: categories.Filter,
params: [ { name: "n", type: "int", } ],
defaultParams: [25]
});
addFuncDef({
name: 'currentBelow',
category: categories.Filter,
params: [ { name: "n", type: "int", } ],
defaultParams: [25]
});
addFuncDef({
name: "exclude", name: "exclude",
category: categories.Filter, category: categories.Filter,
params: [ { name: "exclude", type: 'string' } ], params: [ { name: "exclude", type: 'string' } ],
...@@ -221,6 +235,13 @@ function (_) { ...@@ -221,6 +235,13 @@ function (_) {
}); });
addFuncDef({ addFuncDef({
name: 'highestMax',
category: categories.Filter,
params: [ { name: "count", type: "int" } ],
defaultParams: [5]
});
addFuncDef({
name: 'lowestCurrent', name: 'lowestCurrent',
category: categories.Filter, category: categories.Filter,
params: [ { name: "count", type: "int" } ], params: [ { name: "count", type: "int" } ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment