UNPKG

kea-react

Version:

Componentes comunes de react

11 lines (10 loc) 333 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function busquedaRango(min, max, valor) { if (min == null && max == null) return true; if (valor == null) return false; return (!min || valor >= min) && (!max || valor <= max); } exports.busquedaRango = busquedaRango;