xdrdak / camelize-proxy

Allow access to objects via camel casing without manipulating the object

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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);

About

Allow access to objects via camel casing without manipulating the object


Languages

Language:JavaScript 100.0%