0.0.12 • Published 4 years ago

object-keys-convertor v0.0.12

Weekly downloads
1
License
MIT
Repository
github
Last release
4 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

4 years ago

0.0.12

4 years ago

0.0.10

4 years ago

0.0.8

4 years ago

0.0.5

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

1.0.0

5 years ago