Loan Laux 09249045eb
Add Reaction Commerce provider
Signed-off-by: Loan Laux <loan@outgrow.io>
2021-03-30 20:07:48 +04:00

9 lines
201 B
TypeScript

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