add: documentation

This commit is contained in:
“Naeel”
2026-06-30 15:45:24 +04:00
parent 540c1f7293
commit ca276d200f
1055 changed files with 47294 additions and 0 deletions
@@ -0,0 +1,7 @@
(function() {
// Client-side trailing slash enforcer for dumb static servers
var path = window.location.pathname;
if (path.length > 1 && path.substr(-1) !== '/' && path.indexOf('.') === -1) {
window.location.replace(path + '/' + window.location.search + window.location.hash);
}
})();