UNPKG

node-input-validator

Version:

validation library for nodejs, inspired by laravel.

10 lines (7 loc) 166 B
const v = require('validator'); module.exports = async function latLong(field, value) { if (v.isLatLong(String(value))) { return true; } return false; };