File size: 427 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
/*
The function isJetpackCheckout() is used to determine if the current page is a Jetpack checkout page.
It always returns false on the server side as window object is not available there (assumption that checkout pages are not rendered server-side).
*/
const isJetpackCheckout = () =>
'undefined' !== typeof document && window.location.pathname.startsWith( '/checkout/jetpack' );
export default isJetpackCheckout;
|