UNPKG

@shopify/shopify-api

Version:

Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks

12 lines (9 loc) 249 B
import crypto from 'crypto'; function getHmac(body, apiSecretKey) { return crypto .createHmac('sha256', apiSecretKey) .update(body, 'utf8') .digest('base64'); } export { getHmac }; //# sourceMappingURL=get-hmac.mjs.map