_.startCase

_.startCase([string=''])

Converts string to start case.

Since

3.1.0

Arguments

  1. [string=''] (string): The string to convert.

Returns

(string): Returns the start cased string.

Example

1
2
3
4
5
6
7
8
_.startCase('--foo-bar--');
// => 'Foo Bar'
  
_.startCase('fooBar');
// => 'Foo Bar'
  
_.startCase('__FOO_BAR__');
// => 'FOO BAR'
doc_Lodash
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.