mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-14 08:36:41 +02:00
Add initial 11ty website structure
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
function base64UrlSafe(hashString = "") {
|
||||
return hashString.replace(/[=\+\/]/g, function(match) {
|
||||
if(match === "=") {
|
||||
return "";
|
||||
}
|
||||
if(match === "+") {
|
||||
return "-";
|
||||
}
|
||||
return "_";
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = { base64UrlSafe };
|
||||
Reference in New Issue
Block a user