stringzy
Version:
A versatile string manipulation library providing a range of text utilities for JavaScript and Node.js applications.
9 lines (8 loc) • 335 B
TypeScript
/**
* Checks if given latitude and longitude are valid coordinates.
*
* @param {number} lat - The latitude to check.
* @param {number} long - The longitude to check.
* @returns {boolean} True if both latitude and longitude are valid, false otherwise.
*/
export declare function isCoordinates(lat: number, long: number): boolean;