★着ていた洋服
・ザ・ノース・フェイス (THE NORTH FACE) Nuptse Bootie WP I Short (ヌプシ ブーティ ウォータープルーフ VII ショート) トレッキングシューズ メンズ BK NF52273 BK
楽天市場:https://a.r10.to/hkwHki
Amazon:https://amzn.to/4cu9f5a
・FreshServiceSport PERTEX® QUANTUM DOWN ANORAK
https://freshservice.jp/products/fss-...
・PUMA | 〈別注〉トラックジャケット MEN
https://bshop-inc.com/shop/ec/item/vi...
・Wrangler Remake Sta-Prest Wrancher Dress Jeans Navy
https://www.damagedone.jp/product/18985
*
* Again: this will **not** prevent inline script, e.g.:
* .
*
* This workaround is possible because Safari supports the non-standard 'beforeload' event.
* This allows us to trap the module and nomodule load.
*
* Note also that `nomodule` is supported in later versions of Safari - it's just 10.1 that
* omits this attribute.
* -->
*/
(function () {
const check = document.createElement('script');
if (!('noModule' in check) && 'onbeforeload' in check) {
let support = false;
document.addEventListener(
'beforeload',
(e) => {
if (e.target === check) {
support = true;
} else if (!e.target.hasAttribute('nomodule') || !support) {
return;
}
e.preventDefault();
},
true,
);
check.type = 'module';
const blob = URL.createObjectURL(
new window.Blob([], { type: 'text/javascript' }),
);
check.src = blob;
check.onload = () => {
URL.revokeObjectURL(blob);
};
document.head.appendChild(check);
check.remove();
}
})();