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>
31 lines
982 B
JavaScript
31 lines
982 B
JavaScript
import assertString from './util/assertString';
|
|
var validMediaType = /^[a-z]+\/[a-z0-9\-\+\._]+$/i;
|
|
var validAttribute = /^[a-z\-]+=[a-z0-9\-]+$/i;
|
|
var validData = /^[a-z0-9!\$&'\(\)\*\+,;=\-\._~:@\/\?%\s]*$/i;
|
|
export default function isDataURI(str) {
|
|
assertString(str);
|
|
var data = str.split(',');
|
|
if (data.length < 2) {
|
|
return false;
|
|
}
|
|
var attributes = data.shift().trim().split(';');
|
|
var schemeAndMediaType = attributes.shift();
|
|
if (schemeAndMediaType.slice(0, 5) !== 'data:') {
|
|
return false;
|
|
}
|
|
var mediaType = schemeAndMediaType.slice(5);
|
|
if (mediaType !== '' && !validMediaType.test(mediaType)) {
|
|
return false;
|
|
}
|
|
for (var i = 0; i < attributes.length; i++) {
|
|
if (!(i === attributes.length - 1 && attributes[i].toLowerCase() === 'base64') && !validAttribute.test(attributes[i])) {
|
|
return false;
|
|
}
|
|
}
|
|
for (var _i = 0; _i < data.length; _i++) {
|
|
if (!validData.test(data[_i])) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
} |