UNPKG

rizzo-next

Version:

The next generation of Lonely Planet's style guide and pattern library.

12 lines (9 loc) 296 B
import CookieUtil from "./cookie_util"; class ShopCookieUtil extends CookieUtil{ getShopItemCount() { let shopCartCookie = this.getCookie("shopCartCookie", "JSON"); return (shopCartCookie && shopCartCookie.A) ? shopCartCookie.A.length : null; } } export default ShopCookieUtil;