Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
woocommerce-paypal-payments
/
modules
/
ppcp-googlepay
/
resources
/
js
/
Helper
:
UpdatePaymentData.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
class UpdatePaymentData { constructor( config ) { this.config = config; } update( paymentData ) { return new Promise( ( resolve, reject ) => { fetch( this.config.endpoint, { method: 'POST', headers: { 'Content-Type': 'application/json', }, credentials: 'same-origin', body: JSON.stringify( { nonce: this.config.nonce, paymentData, } ), } ) .then( ( result ) => result.json() ) .then( ( result ) => { if ( ! result.success ) { return; } resolve( result.data ); } ); } ); } } export default UpdatePaymentData;