Use kebab case instead of camel case

This commit is contained in:
tniezg
2021-08-18 18:14:49 +02:00
parent 17f8d497b8
commit c150a79a6b
28 changed files with 39 additions and 39 deletions

View File

@@ -0,0 +1,7 @@
import { requireConfigValue } from '@framework/isomorphic-config'
import Cookies from 'js-cookie'
const getCartToken = () =>
Cookies.get(requireConfigValue('cartCookieName') as string)
export default getCartToken