mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-27 22:25:54 +10:00
6 lines
118 B
JavaScript
6 lines
118 B
JavaScript
module.exports = function ensureEndingSlash (path) {
|
|
return /(\.html|\/)$/.test(path)
|
|
? path
|
|
: path + '/'
|
|
}
|