Small TypeScript helper utilities used in Hanlogy projects.
This package is published to GitHub Packages.
npm i @hanlogy/ts-libimport { isPlainObject, kebabToCamel } from '@hanlogy/ts-lib';
isPlainObject({ a: 1 }); // true
kebabToCamel('hello-world'); // "helloWorld"Designed to work in:
- Node.js
- React
- React Native
No DOM-specific APIs.
npm ci
npm run lint
npm test
npm run build