if (is_shopjis()) { let isCartChecked_ofORB = false; async function check_cart_ofORB () { let originalFetch = window.fetch; window.fetch = function() { return originalFetch.apply(this, arguments).then(response => { try { if (arguments[0].includes('cart.js')) { return response.clone().json().then(data => { if (data.original_total_price && data.original_total_price > 0) { MakeLog_ofORB(`${c_read_url_ofORB}cart.js`); } return response; }); } return response; } catch (error) { return response; } }); }; if (!isCartChecked_ofORB) { isCartChecked_ofORB = true; await fetch(`${window.location.protocol}//${window.location.hostname}/cart.js`); } } check_cart_ofORB(); }