Loan Laux 25ba1f1bae
implement account-tied carts and cart reconciliation
Signed-off-by: Loan Laux <loan@outgrow.io>
2021-04-27 16:28:16 +04:00

9 lines
221 B
TypeScript

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