UNPKG

shopper

Version:
12 lines (9 loc) 260 B
export function shopifyProductLinkToGid(link: string) { const parse = link.match(/^(\d+)$|\/(\d+$)/) const id = parse[1] ?? parse[2] const gid = `gid://shopify/Product/${id}` return gid // // older shopify api // const uid = btoa(gid) // return uid }