flora-exception
Version:
An exception system for FQL.
16 lines (15 loc) • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.$Perf = void 0;
/**
* A performance container type.
* Use this when you want to maintain:
* - type hinting
* - readability of type predicates
* But, need to exclude:
* - Deep type checks
* @param p
* @returns
*/
const $Perf = (p) => (obj) => true;
exports.$Perf = $Perf;