Skip to content

toLowerKeys

1.10.0

将属性名转为小写开头

基本用法

遍历对象或者数组,将属性名转为小写开头

typescript
import { toLowerKeys } from 'roodash';

const data = {
  Name: 'roodash',
  Age: 1,
}

const result = toLowerKeys(data);

console.log(result);

// => {name: 'roodash', age: 1}

参数

属性说明类型默认值版本是否必填
data传入的数据Record<string, any> | Record<string, any>[]-1.10.0

基于 MIT 协议发布