Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
944 B
JavaScript
20 lines
944 B
JavaScript
import _isValidPhoneNumber from './isValidPhoneNumber.js'
|
|
import metadata from '../metadata.min.json' with { type: 'json' }
|
|
|
|
function isValidPhoneNumber(...parameters) {
|
|
parameters.push(metadata)
|
|
return _isValidPhoneNumber.apply(this, parameters)
|
|
}
|
|
|
|
describe('isValidPhoneNumber', () => {
|
|
it('should detect whether a phone number is valid', () => {
|
|
expect(isValidPhoneNumber('8 (800) 555 35 35', 'RU')).to.equal(true)
|
|
expect(isValidPhoneNumber('8 (800) 555 35 35 0', 'RU')).to.equal(false)
|
|
expect(isValidPhoneNumber('Call: 8 (800) 555 35 35', 'RU')).to.equal(false)
|
|
expect(isValidPhoneNumber('8 (800) 555 35 35', { defaultCountry: 'RU' })).to.equal(true)
|
|
expect(isValidPhoneNumber('+7 (800) 555 35 35')).to.equal(true)
|
|
expect(isValidPhoneNumber('+7 1 (800) 555 35 35')).to.equal(false)
|
|
expect(isValidPhoneNumber(' +7 (800) 555 35 35')).to.equal(false)
|
|
expect(isValidPhoneNumber(' ')).to.equal(false)
|
|
})
|
|
}) |