query-engine.ts

Non-parsing query-engine on top of key-value storage
git clone git://git.finwo.net/lib/query-engine.ts
Log | Files | Refs | README | LICENSE

composite-index.ts (239B)


      1 export function CompositeIndex(): ClassDecorator {
      2   return targetConstructor => {
      3     // map.set(targetConstructor, {
      4     //   type  : targetConstructor,
      5     //   fn    : targetConstructor,
      6     //   value : EMPTY_VALUE,
      7     // });
      8   };
      9 }