0.5.0 • Published 5 years ago

lambal v0.5.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

Lambal

A pragmatic utility library to spice up your code.

With a focus on functional style code, without staring in the deep abyss of category theory.

Install

npm i -S lambal

Usage

Recommended with full usage!

import
{ F
, B
, S
, N
, A
, O
} from 'lambal'

// Sorted by main funcionality
// F -> Function
// B -> Boolean
// S -> String
// N -> Number
// A -> Array
// O -> Object

// e.g.
const add10 = N.add (10)
const add20 = F.compose (add10) (add10)

When you need only need a couple of functions

import
{ add
, multiply
} from 'lambal/number'
import
{ compose
, identity
} from 'lambal/function'
0.5.0

5 years ago

0.4.1

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago

0.0.1

5 years ago