Opinionated collection of JavaScript / TypeScript utilities by @kazupon
✅️ Modern: ES Modules first and respect Web Standard
✅️ Compatible: Support CommonJS and various JS environments
✅️️ Minimal: Small and fully tree-shakable
✅️️ Type Strong: Written in TypeScript, with full JSdoc
✅️️ Universal Runtime: Support Browser, Node.js, Deno, Bun and other!
# Using npm
npm install @kazupon/jts-utils --save
# Using pnpm
pnpm add @kazupon/jts-utils
# Using yarn
yarn add @kazupon/jts-utils
deno add @kazupon/jts-utils
bun add @kazupon/jts-utils
in your HTML:
<script type="module">
/**
* you can install via other CDN URL such as skypack,
* or, you can also use import maps
*/
import { pascalize } from 'https://esm.sh/@kazupon/jts-utils'
// something todo
// ...
</script>
If you are interested in contributing to @kazupon/jts-utils
, I highly recommend checking out the contributing guidelines here. You'll find all the relevant information such as how to make a PR, how to setup development) etc., there.