mirror of
https://github.com/actions/configure-pages.git
synced 2025-12-08 16:16:09 +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
|
|
}
|