4
0
forked from crowetic/commerce
2021-02-04 13:23:44 +02:00

9 lines
203 B
TypeScript

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