Files
illogical-impulse/.config/quickshell/modules/common/functions/string_utils.js
T
2025-05-03 21:31:31 +02:00

6 lines
152 B
JavaScript

function format(str, ...args) {
return str.replace(/{(\d+)}/g, (match, index) =>
typeof args[index] !== 'undefined' ? args[index] : match
);
}