React Native UnzipLiu
Format UPC to UPCE,UPCA,LongUPC for React Native App
Installation
npm install react-native-formatupcliu --save
react-native link react-native-formatupcliu
Usage
import it into your code
import { formatUPC } from 'react-native-formatupcliu';
API
formatUPC(source: string): Promise
format UPC string to UPCE,UPCA,LongUPC array
Example
const upc = '0111111111117';
formatUPC(upc).then((formattedUPCArr) => {
console.log(...formattedUPCArr);
}).catch((error) => {
console.log(error);
});