UNPKG

@11ty/eleventy-utils

Version:

Low level internal utilities to be shared amongst Eleventy projects

13 lines (12 loc) 237 B
function base64UrlSafe(hashString = "") { return hashString.replace(/[=\+\/]/g, function(match) { if(match === "=") { return ""; } if(match === "+") { return "-"; } return "_"; }); } module.exports = { base64UrlSafe };