VAT Excl / VAT Inc
(function () {
"use strict";
/*
* Xtreme Plasma - Stripe homepage delay test
* Delays Stripe.js for 3 seconds on the homepage only.
* Checkout/payment pages are NOT affected.
*/
var DELAY = 3000;
var isHomePage =
window.location.pathname === "/" ||
window.location.pathname === "";
if (!isHomePage) {
return;
}
var stripeLoaded = false;
var delayed