I'm running the following code:
const HMACKey = Buffer.from(hmacKeyBase64, 'base64');
const HMAC = createHmac('sha256', HMACKey);
HMAC.update(value);
return HMAC.digest('hex');
and i'm getting this error
Cannot read property 'call' of undefined
please take a look at the image for further information about the error
