@euk-labs/beltz
Version:
    {
return String(input).replace(/[^\d]/g, '');
}
export function removeWhitespace(str) {
return str.replace(/\s/g, '');
}
export function capitalizeString(str) {
return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase();
}
//# sourceMappingURL=string.js.map