2022-07-16 22:18:50 +01:00

1 line
87 B
JavaScript

module.exports.capitalise = string => string.charAt(0).toUpperCase() + string.slice(1);