JFP 2.7.0
See the version list below for details.
dotnet add package JFP --version 2.7.0
NuGet\Install-Package JFP -Version 2.7.0
<PackageReference Include="JFP" Version="2.7.0" />
paket add JFP --version 2.7.0
#r "nuget: JFP, 2.7.0"
// Install JFP as a Cake Addin #addin nuget:?package=JFP&version=2.7.0 // Install JFP as a Cake Tool #tool nuget:?package=JFP&version=2.7.0
A language as a library borrowing concepts from Lisp and Haskell. JFP contains functions which allow for gentle adoption of functional programming ideas for developers who are new to the functional paradigm. JFP embraces the dynamic nature of Javascript while supporting safe data typing.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
V2.7.0
- repeat - Repeats a string n times
- times - executes a function n times, threading the output through the execution chain
- between - tests that a value is between two numbers
- rcompose - performs a right (reverse) composition
V2.6.0
- takeUntil - captures values in order from the beginning of provided list until a value causes the predicate to pass
- dropUntil - drops values from array until predicate is satisfied
- zip - zips n arrays together into an array of n-length arrays
- addModule - takes function and executes, capturing map of keys and functions; returns function which will attempt to add functions to JFP; throws error if any names exist, or any functions cannot be added