
* fix failing tests * fix tests for gift cards * fix tests for gift cards * upload video only when fail * fix preorder time * fixed translation page * fix navigation, stripe and adyen * fix graphQl npm * update stories
6 lines
207 B
JavaScript
6 lines
207 B
JavaScript
export function isShippingAvailableInCheckout(checkout, shippingName) {
|
|
const shipping = checkout.shippingMethods.find(
|
|
element => element.name === shippingName
|
|
);
|
|
return shipping !== undefined;
|
|
}
|