UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

8 lines 259 B
export function not(pred: Function, thisArg: any): Function { function notPred(): any { return !((<any> notPred).pred.apply((<any> notPred).thisArg, arguments)); } (<any> notPred).pred = pred; (<any> notPred).thisArg = thisArg; return notPred; }