title
Convert a string to title case
273 bytes
Usage
Formats the given string in title case fashion
import * as import _
_ from 'radashi'
import _
_.function title(str: string | null | undefined): stringexport title
Formats the given string in title case fashion.
title('hello world') // => 'Hello World'import _
_.function title(str: string | null | undefined): stringexport title
Formats the given string in title case fashion.
title('va_va_boom') // => 'Va Va Boom'import _
_.function title(str: string | null | undefined): stringexport title
Formats the given string in title case fashion.
title('root-hook') // => 'Root Hook'import _
_.function title(str: string | null | undefined): stringexport title
Formats the given string in title case fashion.
title('queryItems') // => 'Query Items'