An open API service indexing awesome lists of open source software.

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

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}}



```