emvco-qr-sdk
Version:
A robust TypeScript SDK for decoding, validating, and processing EMVCo-compliant QR codes used in digital payment systems.
22 lines (21 loc) • 621 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.REGIONS = void 0;
/**
* Constants representing region codes used for strategy resolution and tag interpretation.
* These values are used internally by the mapping services to resolve tag-specific logic.
*/
exports.REGIONS = {
/**
* Region code for Colombia-specific parsing strategies.
*/
CO: 'CO',
/**
* Region code for globally standardized parsing (EMVCo default).
*/
GLOBAL: 'GLOBAL',
/**
* Fallback region code when no specific mapping is defined.
*/
DEFAULT: 'DEFAULT',
};