From efdce3cd89c0d2164ed3c7c7e230b0e70357560c Mon Sep 17 00:00:00 2001 From: Brian Faust Date: Fri, 11 Jan 2019 13:30:59 +0200 Subject: [PATCH] fix: export camelize instead of camelizeKeys --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 9cc7cf0..46f698c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,7 +15,7 @@ import last from "lodash/last"; import partition from "lodash/partition"; import shuffle from "lodash/shuffle"; import snakeCase from "lodash/snakeCase"; -import { camelizeKeys as camelCase } from "xcase"; +import { camelize as camelCase } from "xcase"; export function cloneDeepWith(value: any, transformer: any) { return copy(value).map(transformer);