UNPKG

botframework-webchat-component

Version:
5 lines (4 loc) 111 B
export default function isZeroOrPositive(value) { // This will handle minus-zero. return 1 / value >= 0; }