0.0.12 • Published 3 years ago

object-keys-convertor v0.0.12

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

key 格式转换

可以让接口返回数据的key格式统一(snake_case 或 camelCase)

Install

npm i object-keys-convertor
import { toCamelcase, toSnakecase } from 'object-keys-convertor';

toCamelcase({
  a_b_c: {
    aB_C: true
  }
})

// output
{
  aBC: {
    aBC: true
  }
}

toSnakecase({
  a_b_c: {
    aB_C: true
  }
})

// output
{
  a_b_c: {
    a_b_c: true
  }
}

Development

npm run build 
npm test
0.0.11

3 years ago

0.0.12

3 years ago

0.0.10

3 years ago

0.0.8

3 years ago

0.0.5

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

1.0.0

4 years ago