UNPKG

pay-sdk-react

Version:

A cross-platform payment SDK for React, supporting Alipay, WeChat Pay, PayPal, Stripe, Payssion, and Airwallex, compatible with H5, PC, and App environments.

5 lines 198 B
import { isFunction } from './is'; export function resolveContainer(getContainer) { var container = isFunction(getContainer) ? getContainer() : getContainer; return container || document.body; }