🌱 Release Notes
Latest version:
Detailed release notes for each version are available on GitHub.
🚀 Getting Started
CDN
fonction
provides UMD and ESM.
For prototyping and learning purposes, the latest version is available as follows:
UMD
<script src="https://unpkg.com/fonction"></script>
<script>
console.log(F.add(1, 2)) //=> 3
</script>
ESM
<script type="module">
import { add } from 'https://unpkg.com/fonction?module'
console.log(add(1, 2)) //=> 3
</script>
NPM
with Yarn
yarn add -D fonction
with NPM
npm i -D fonction