UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

4 lines 112 B
import { isNegative } from "./isNegative"; export function isNotNegative(value) { return !isNegative(value); }