Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dash-os/to-redux-type

Converts camel-case to screaming-snake-case (myValue -> MY_VALUE)
https://github.com/dash-os/to-redux-type

Last synced: 6 days ago
JSON representation

Converts camel-case to screaming-snake-case (myValue -> MY_VALUE)

Awesome Lists containing this project

README

        

# to-redux-type

Converts camelCase to SCREAMING_SNAKE_CASE with special considerations for wildcard
(*) and handling of short strings (systemRX vs systemRx --> SYSTEM_RX)

> By design, for arrays and objects, values that start with @ are not converted and
> instead are returned without the @ included. This is not escapeable at this time.

### Simple Example

```js
import ToReduxType from 'to-redux-type'

// string

const pre = 'myValue'

const post = ToReduxType(pre) ; // MY_VALUE

// object

const pre2 = {
myValue: 'my value!',
'SYSTEM_*': 'system wildcard',
'@noCONVERT': 'no conversion'
}

const post2 = ToReduxType(pre2) ;
// { MY_VALUE: 'my value!', 'SYSTEM_*': 'system wildcard', 'noCONVERT': 'no conversion' }

// array

const pre3 = [ 'myValue', 'ANOTHER_VALUE', '@@@noCONVERT' ]

const post3 = ToReduxType(pre3) ; // [ 'MY_VALUE', 'ANOTHER_VALUE', '@@noCONVERT' ]

```