/camelize-proxy

Allow access to objects via camel casing without manipulating the object

Primary LanguageJavaScript

camelize-proxy

Allow access to objects via camel casing without manipulating the object

Useage

import { camelizeProxy } from "camelize-proxy";

const obj = camelizeProxy({
  my_value: "this is a value",
});

console.log(obj.myValue === obj.my_value);