4
0
forked from crowetic/commerce
commerce/framework/shopify/utils/get-checkout-id.ts
2021-02-04 17:22:01 +02:00

11 lines
273 B
TypeScript

import Cookies from 'js-cookie'
import { SHOPIFY_CHECKOUT_ID_COOKIE } from '../const'
const getCheckoutId = (id?: string) => {
const checkoutID = id ?? Cookies.get(SHOPIFY_CHECKOUT_ID_COOKIE)
console.log(checkoutID)
return checkoutID
}
export default getCheckoutId