Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dleitee committed Apr 17, 2016
1 parent c970e81 commit 53d5a3c
Showing 1 changed file with 17 additions and 29 deletions.
46 changes: 17 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,23 +89,23 @@ Also available for [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD)
- [x] [reverse](https://github.com/dleitee/strman#reversevalue)
- [x] [rightPad](https://github.com/dleitee/strman#rightpadvalue-length-char)
- [x] [rightTrim](https://github.com/dleitee/strman#righttrimvalue)
- [x] safeTruncate
- [x] shuffle
- [x] slice
- [x] slugify
- [x] split
- [x] startsWith
- [x] substr
- [x] surround
- [x] toCamelCase
- [x] toDecamelize
- [x] toKebabCase
- [x] toLowerCase
- [x] toSnakeCase
- [x] toStudlyCaps
- [x] toUpperCase
- [x] trim
- [x] truncate
- [x] [safeTruncate](https://github.com/dleitee/strman#safetruncatevalue-length-append)
- [x] [shuffle](https://github.com/dleitee/strman#shufflevalue)
- [x] [slice](https://github.com/dleitee/strman#slicevalue-beginslice-endslice)
- [x] [slugify](https://github.com/dleitee/strman#slugifystring)
- [x] [split](https://github.com/dleitee/strman#splitvalue-separator-limit)
- [x] [startsWith](https://github.com/dleitee/strman#startswithvalue-search-position0)
- [x] [substr](https://github.com/dleitee/strman#substrvalue-start-length)
- [x] [surround](https://github.com/dleitee/strman#surroundvalue-substr)
- [x] [toCamelCase](https://github.com/dleitee/strman#tocamelcasevalue)
- [x] [toDecamelize](https://github.com/dleitee/strman#todecamelizevalue-chr)
- [x] [toKebabCase](https://github.com/dleitee/strman#tokebabcasevalue)
- [x] [toLowerCase](https://github.com/dleitee/strman#tolowercasevalue)
- [x] [toSnakeCase](https://github.com/dleitee/strman#tosnakecasevalue)
- [x] [toStudlyCaps](https://github.com/dleitee/strman#tostudlycapsvalue)
- [x] [toUpperCase](https://github.com/dleitee/strman#touppercasevalue)
- [x] [trim](https://github.com/dleitee/strman#trimvalue)
- [x] [truncate](https://github.com/dleitee/strman#truncatevalue-length-append)

## append([value], ...[append])

Expand Down Expand Up @@ -672,18 +672,6 @@ let result = toCamelCase(value);
// result => "camelCase";
```

## toCamelCase([value])

Transform to camelCase.

```es6
import {toCamelCase} from 'strman'

let value = "camel-case";
let result = toCamelCase(value);
// result => "camelCase";
```

## toDecamelize([value], [chr])

Transform to uncamelcase.
Expand Down

0 comments on commit 53d5a3c

Please sign in to comment.