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.

18 lines (17 loc) 294 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = omit; // delete keys from object function omit(obj, keys) { const clone = { ...obj }; keys.forEach(key => { if (key in clone) { delete clone[key]; } }); return clone; }