const capitalise = (str)=>str.charAt(0).toUpperCase() + str.slice(1); export { capitalise }; //# sourceMappingURL=strings.mjs.map