UNPKG

copy-cat

Version:

A standalone server to mock various communications services for push messaging, email, and sms.

11 lines (9 loc) 269 B
'use strict'; var routeValidator = require('express-route-validator'), phone = require('phone'); routeValidator.addValidators({ // Check that phone can be converted to E.164 format isBandwidthPhoneNumber: function (str) { return phone(str).length; } });