This repository's code was moved to lou.codes.
⚒️ Vangware TypeScript curried functional utils.
Install @vangware/utils
as a dependency:
pnpm add @vangware/utils
# or
npm install @vangware/utils
# or
yarn add @vangware/utils
Import it and use it:
import { get } from "@vangware/utils";
get("foo")({ foo: "bar" }); // "bar"
Import @vangware/utils
using the npm:
prefix, and use it directly:
import { get } from "npm:@vangware/utils";
get("foo")({ foo: "bar" }); // "bar"
Import @vangware/utils
using esm.sh, and use it directly:
<script type="module">
import { get } from "https://esm.sh/@vangware/utils";
get("foo")({ foo: "bar" }); // "bar"
</script>
- 📝 Documentation: TypeDoc generated documentation.
- ⏳ Changelog: List of changes between versions.
- ✅ Tests Coverage: Coveralls page with tests coverage.