mirror of
https://github.com/danbulant/dotfiles
synced 2026-06-18 22:21:43 +00:00
9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
/**
|
|
* Trims the File protocol off the input string
|
|
* @param {string} str
|
|
* @returns {string}
|
|
*/
|
|
function trimFileProtocol(str) {
|
|
return str.startsWith("file://") ? str.slice(7) : str;
|
|
}
|
|
|