Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ECMAScript proposal: String capitalize method #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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'

```