UNPKG

@kirz/react-native-toolkit

Version:

Toolkit to speed up React Native development

13 lines (10 loc) 386 B
import type { Purchase as IapPurchase } from 'react-native-iap'; import type { Purchase } from '../../types'; export function transformPurchase(purchase: IapPurchase): Purchase { return { productId: purchase.productId, transactionDate: new Date(purchase.transactionDate).toISOString(), transactionReceipt: purchase.transactionReceipt, originalData: purchase, }; }