https://github.com/previousdeveloper/angular2-camelcase
Angular2 pipe to convert camelCase strings to human readable strings
https://github.com/previousdeveloper/angular2-camelcase
angular2
Last synced: 2 months ago
JSON representation
Angular2 pipe to convert camelCase strings to human readable strings
- Host: GitHub
- URL: https://github.com/previousdeveloper/angular2-camelcase
- Owner: previousdeveloper
- Created: 2017-02-08T21:22:22.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-13T19:39:58.000Z (about 8 years ago)
- Last Synced: 2024-12-29T06:29:43.121Z (4 months ago)
- Topics: angular2
- Language: TypeScript
- Size: 26.4 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# angular2-camelCase
Angular2 pipe to convert camelCase strings to human readable strings## Installation
### Npm
`npm install angular2-camelcase`
## Usage
```javascript
import {CamelCaseHumanModule} from 'angular2-camelcase';@NgModule({
declarations: [
CamelCaseHumanModule
],
....
})
```
## HTML
```html
{{'helloWorldHowAreYouDoingIamUpper' | camelCaseToHuman:true}}
{{'helloWorldHowAreYouDoingIamLower' | camelCaseToHuman:false}}
```