UNPKG

validatable

Version:

A library for synchronous and asynchronous input validation.

6 lines (4 loc) 117 B
import { isPresent } from 'typeable'; export function presence (value: any): boolean { return isPresent(value); }