Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions proposal-string-capitalize.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# ECMAScript proposal: toCapitalize() method for String.prototype
- [Motivation](#motivation)
- [High-level API](#high-level-api)

## Motivation

The toCapitalize() method returns the calling string value converted to capitalize.
Like toLowerCase()/toUpperCase() do but allows you to transform the first letter of each word into the string to upper case or the first letter of all string only (if the second optional parameter is presented).

```js
str.toCapitalize([firstLetterOnly])
```
## High-level API

```js
const a = 'the best string ever'.toCapitalize();
console.log(a);
// 'The Best String Ever'

const b = 'the best string ever'.toCapitalize(true);
console.log(b);
// 'The best string ever'

```