securepay
Version:
https://www.securepay.com.au/
18 lines (17 loc) • 448 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UtilsService = void 0;
var UtilsService = /** @class */ (function () {
function UtilsService() {
}
/**
* Base 64 Encode String
*
* @param str
*/
UtilsService.prototype.base64Encode = function (str) {
return Buffer.from(str).toString("base64");
};
return UtilsService;
}());
exports.UtilsService = UtilsService;
;