UNPKG

188 BJavaScriptView Raw
1import { camelCaseKey } from "./lib";
2
3test("should camel key", () => {
4 const testKey = "GITHUB.REPOS";
5
6 const key = camelCaseKey(testKey);
7
8 expect(key).toEqual("github.repos");
9});