UNPKG

react-native-moyasar-sdk

Version:

Official React Native Moyasar SDK - Integrate Credit Cards, Apple Pay, Samsung Pay, and STC Pay with simple interfaces for a seamless payment experience in your React Native app

20 lines (19 loc) 354 B
"use strict"; const numbersMap = { '٠': '0', '١': '1', '٢': '2', '٣': '3', '٤': '4', '٥': '5', '٦': '6', '٧': '7', '٨': '8', '٩': '9' }; export function mapArabicNumbers(number) { return number.split('').map(char => { return numbersMap[char] || char; }).join(''); } //# sourceMappingURL=arabic_numbers_mapper.js.map