Skip to content

Commit

Permalink
fix: export camelize instead of camelizeKeys
Browse files Browse the repository at this point in the history
  • Loading branch information
faustbrian committed Jan 11, 2019
1 parent 6504d0a commit efdce3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Expand Up @@ -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);
Expand Down

0 comments on commit efdce3c

Please sign in to comment.