UNPKG

@eckidevs/payfastjs

Version:

A Node.js implementation of the PayFast API.

9 lines (7 loc) 147 B
const crypto = require("crypto"); module.exports = function(uri) { return crypto .createHash("md5") .update(uri) .digest("hex"); };