UNPKG

shopper

Version:
11 lines 379 B
export function shopifyProductLinkToGid(link) { var _a; const parse = link.match(/^(\d+)$|\/(\d+$)/); const id = (_a = parse[1]) !== null && _a !== void 0 ? _a : parse[2]; const gid = `gid://shopify/Product/${id}`; return gid; // // older shopify api // const uid = btoa(gid) // return uid } //# sourceMappingURL=shopify-product-link-to-gid.js.map