dots-hyprland/.config/quickshell/modules/common/functions/file_utils.js
2025-05-21 19:22:39 -06: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;
}