fonction
A modern practical functional library
β¨ Feature
- π Friendly type definition
- :earth_americas: Universal functions providing ESM and UMD
- :package: Optimized, super slim size
- π TSDoc-style comments
- π’ Bigint support
- π¦ Deno support
Fonction (French word for "function", not typo:sweat_smile:) is modern practical functional library. Special attention is paid to bundle size and strict type definitions. Therefore, you can take out and use only what you want to use without worrying about the size.
π Docs
:truck: Install
npm i fonction
or
yarn add fonction
π« Usage
fonction
provides multi platform modules.
π¦ Deno
Click to toggle contents of `code`
deno.land
import { add } from 'https://deno.land/x/fonction@v1.3.0/mod.ts'
add(1, 2) // 3
nest.land
import { add } from 'https://x.nest.land/fonction@1.3.0/mod.ts'
add(1, 2) // 3
:package: NPM
Click to toggle contents of `code`
ESM
import { add } from 'fonction'
add(1, 2) // 3
UMD
const { add } = require('fonction')
add(1, 2) // 3
:globe_with_meridians: CDN
Click to toggle contents of `code`
ESM
<script type="module">
import { add } from 'https://unpkg.com/fonction?module'
console.log(add(1, 2)) // 3
</script>
UMD
<script src="https://unpkg.com/fonction"></script>
<script>
console.log(F.add(1, 2)) // 3
</script>
πΊοΈ Loadmap
For the time being, my goal is to implement the functions implemented in the great starting projects (lodash, ramda, rambda, ... etc).
The release will be a public release when it is fully tested in the beta
release and then merged into the main branch.
You can check the implementation status of all functions here.
You can also try all the features including the beta
version with the following command or URL.
npm i fonction@beta
or
yarn add fonction@beta
// deno.land
import {} from 'https://deno.land/x/fonction@v1.3.0-beta.x/mod.ts'