tl;dr
; const results = userName: "somebody123" userName: "somebody456" ;
Description
This implements a parser and compiler for the filtering and sorting features defined in System for Cross-Domain Identity Management (SCIM) Protocol 2.0. It was originally built for use by AuthX;
Methods & Properties
compileFilter(input: string): (data: any) => boolean
Compile a SCIM filter expression into a function.
compileSorter(input: string): (a: any, b: any) => -1 | 0 | 1
Compile a SCIM sort expression into a function.