forked from Shinonome/dots-hyprland
5 lines
95 B
JavaScript
5 lines
95 B
JavaScript
function trimFileProtocol(str) {
|
|
return str.startsWith("file://") ? str.slice(7) : str;
|
|
}
|
|
|