Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
nearley
/
builtin
/
Filename :
postprocessors.ne
back
Copy
# Simple postprocessors # Postprocessor generator that lets you select the nth element of the list. # `id` is equivalent to nth(0). @{% // Bypasses TS6133. Allow declared but unused functions. // @ts-ignore function nth(n) { return function(d) { return d[n]; }; } %} # Postprocessor generator that lets you generate an object dynamically. @{% // Bypasses TS6133. Allow declared but unused functions. // @ts-ignore function $(o) { return function(d) { var ret = {}; Object.keys(o).forEach(function(k) { ret[k] = d[o[k]]; }); return ret; }; } %} # A separated list of elements. delimited[el, delim] -> $el ($delim $el {% nth(1) %}):* {% function(d) { return [d[0]].concat(d[1]); } %}