@kirz/react-native-toolkit
Version:
Toolkit to speed up React Native development
13 lines (10 loc) • 386 B
text/typescript
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,
};
}