UNPKG

node-input-validator

Version:

validation library for nodejs, inspired by laravel.

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