1.0.0 • Published 6 years ago

react-native-formatupcliu v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

React Native UnzipLiu npm npm

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);
});