Capitalize

This module provides a function to capitalize the first letter of a given string. It takes a single string argument and returns the string with its first letter converted to uppercase. This can be useful for formatting text inputs where proper capitalization is required

Example:

capitalize("hello world") // returns "Hello world"