tspedia
v0.0.43-6
Published
TypeScript helper functions
Downloads
72
Maintainers
Readme
TypeScript Helper functions
import { camelCase, difference } from "tspedia";
camelCase("hello world"); // 'HelloWorld'
difference([1, 2, 3], [2, 3, 4]); // [1,4]