mirror of
https://github.com/actions/configure-pages.git
synced 2026-03-30 01:54:51 +00:00
4 lines
107 B
JavaScript
4 lines
107 B
JavaScript
module.exports = function removeTrailingSlash(str) {
|
|
return str.endsWith('/') ? str.slice(0, -1) : str
|
|
}
|