Skip to content

Instantly share code, notes, and snippets.

@lilyfielding
lilyfielding / currency.js
Created August 17, 2020 20:07
vanilla JS alternative to jquery.currencies.js by @carolineschnapp
// js-cookie https://github.com/js-cookie/js-cookie
// Shopify's currencies.js https://cdn.shopify.com/s/javascripts/currencies.js
import { set, get, remove } from 'js-cookie';
const Currency = window.Currency
if (typeof Currency === 'undefined') {
let Currency = {};
}
@lilyfielding
lilyfielding / currency.js
Created August 17, 2020 20:05
vanilla JS alternative to jquery.currencies.js by @carolineschnapp
import { set, get, remove } from 'js-cookie';
const Currency = window.Currency
if (typeof Currency === 'undefined') {
let Currency = {};
}
Currency.cookie = {
config: {
expires: 365,