Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/akiran/string-convert

Set of string conversion functions
https://github.com/akiran/string-convert

Last synced: 2 months ago
JSON representation

Set of string conversion functions

Awesome Lists containing this project

README

        

string-convert
==============

Set of string conversion functions

Installation
------------
npm install string-convert --save

Methods
-------

### hyphen2camel

Converts hyphenated string to camelcase string

Example:

```javascript
var hyphen2camel = require('string-convert/hyphen2camel');
hyphen2camel('min-width'); // minWidth
hyphen2camel('-moz-transition'); // MozTransition
```

### camel2hyphen

Converts camel case string to hyphenated string

Example:

```javascript
var camel2hyphen = require('string-convert/camel2hyphen');
camel2hyphen('minWidth'); // min-width
camel2hyphen('MozTransition'); //-moz-transition
```