Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { mayWeTrackByTracker } from '../tracker-buckets';
import { recordViewCheckoutInCriteo } from './criteo';
// Ensure setup has run.
import './setup';
/**
* Records that a user viewed the checkout page
* @param {Object} cart - cart as `ResponseCart` object
*/
export function recordViewCheckout( cart ) {
if ( mayWeTrackByTracker( 'criteo' ) ) {
recordViewCheckoutInCriteo( cart );
}
}