dotfiles/.config/quickshell/modules/common/functions/file_utils.js
2025-12-15 18:20:18 +01:00

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;
}