@cahil/utils
v2.3.2
Published
Various utility functions that might come in handy when building things in JavaScript
Downloads
1,761
Readme
@cahil/utils
@cahil/utils
Various utilities to assist when developing JS or TS projects, check out the documentation.
Installation
Using npm
npm install @cahil/utils
Or with yarn
yarn add @cahil/utils
Usage
The recommended way to use the library is to import only the functions that you need. For example, to use the camelToTitle function from the transforms library you would use:
// Best 👍
import camelToTitle from '@cahil/utils/transforms/camelToTitle'
However, if you prefer, you can also import from the libraries or root directly.
// Still not too bad
import { camelToTitle } from '@cahil/utils/transforms'
// OR
// I hope you've got some good tree shaking 🌴👎
import { camelToTitle } from '@cahil/utils'