UNPKG

af-conditionals

Version:

A library that provides tools for making decisions in your code

7 lines (6 loc) 220 B
import { UnaryOperator } from './unary-operator'; export declare class Not extends UnaryOperator { apply(value: any): boolean; } export declare let notInstance: Not; export declare function not(value: any): boolean;