UNPKG

@valkyriestudios/validator

Version:

A lightweight configurable javascript validator

9 lines (8 loc) 279 B
import { type GeoLongitude } from '../types'; /** * Validate that a provided value is a valid longitude value * * @param {unknown} val - Value to verify */ declare function vGeoLongitude(val: unknown): val is GeoLongitude; export { vGeoLongitude, vGeoLongitude as default };