UNPKG

decentralized-internet

Version:

An NPM library of programs to create decentralized web and distributed computing projects

38 lines (30 loc) 799 B
import fixSubtotal from './../lib/fix-subtotal' /** * @method * @name EcomCart#save * @description Save cart object to local storage. * * @param {boolean} [canFixSubtotal=true] - Fix cart subtotal before saving * * @returns {self} * * @example ecomCart.save() */ export default (self, emitter, [canFixSubtotal = true]) => { const { data, storageKey, localStorage } = self if (canFixSubtotal) { fixSubtotal(data) } if (typeof localStorage === 'object' && localStorage) { localStorage.setItem(storageKey, JSON.stringify(data)) } /** * @event EcomCart#save * @type {object} * @property {object} data - Shopping cart data * @example ecomCart.on('save', ({ data }) => { console.log(data.subtotal) }) */ emitter.emit('save', { data }) return self }