fonction
A modern practical functional library
β¨ Features
- π Friendly type definition
- π Universal functions providing ESM and UMD
- π¦ Optimized, super slim size
- π TSDoc-style comments
- π’ Bigint support
- π¦ Deno support
Fonction (French word for "function", not typoπ ) 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
π Supports
The TypeScript version must be 4.1.0
or higher.
This project provide ES modules
and UMD
. The range supported by both is different.
ES modules
Limit support to the latest environment to reduce the bundle size.
Deno |
Node.js |
Edge |
Firefox |
Chrome |
Safari |
iOS Safari |
Samsung |
Opera |
---|---|---|---|---|---|---|---|---|
^1.6.0 | ^14.16.0 | last version | last version | last version | last version | last version | last version | last version |
UMD
Browser is supporting since IE11.
Node.js |
IE / Edge |
Firefox |
Chrome |
Safari |
iOS Safari |
Samsung |
Opera |
---|---|---|---|---|---|---|---|
^6.17.0 | IE11 / ^16 | ^60 | ^61 | ^10.1 | ^10.3 | ^8.2 | ^48 |
Compared to ES modules
, UMD
has a bundle size increase of about 2.5x. Recommend using ES modules
as much as possible.
π« Usage
fonction
provides multi platform modules.
π¦ Deno
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
π¦ Node.js
Install
npm i fonction
or
yarn add fonction
ESM
import { add } from 'fonction'
add(1, 2) // 3
UMD
const { add } = require('fonction')
add(1, 2) // 3
π CDN
ESM
<script type="module">
import { add } from 'https://unpkg.com/fonction?module'
console.log(add(1, 2)) // 3
</script>
UMD
The global object is
F
.
<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@VERSION/mod.ts'
@VERSION
format is like v1.5.0-beta.1
.
π€ Contributing
Contributions, issues and feature requests are welcome!
Feel free to check issues.
π± Show your support
Give a βοΈ if this project helped you!
π‘ License
Copyright Β© 2021-present TomokiMiyauci.
Released under the MIT license