barely-functional
v2.0.0
Published
*A Tiny functional programming library *
Downloads
4
Readme
Barely Functional
*A Tiny functional programming library *
barely-functional is a tiny (2.1Kb without minification) library for doing functional programming. It includes curry
and compose
, and wraps several native es5 methods including .map()
.reduce()
and .filter()
and several es6
methods such as .every()
and .find()
. The library also contains several non native functions inspired (READ: stolen)
from ramdajs.
installing
npm i barely-functional
using
const _ = require('barely-functional')
const sumOfEven = _.compose(_.sum, _.filter((e) => e % 2 === 0))
Barely functional is written in es6. It will run on node.js v4.0 and up. If you wish to use it in the browser you need to use babel and (webpack/browserify)
But ramda is way better...
Yes it is, but it is also a lot bigger. If you a writing a small module, you might not want to include all of Ramda.
## API
append :: a -> [a] -> [a]
Adds the specified value to the end of the supplied array.
_.append(5, [1, 2, 3, 4]);
// => [1, 2, 3, 4, 5]
compose :: ((y -> z), (x -> y) ... (o -> p)(a, b, ..., n -> o)) -> (a, b, ..., n -> z)
Performs right-to-left function composition. The rightmost function may have any arity; the remaining functions must be unary.
const add1 = (n) => n + 1
const double = (n) => n * 2
const add1AndDouble = _.compose(double, add1)
add1AndDouble(5)
// => 12
concat :: [a] -> [a] - [a]
Concatenates two arrays.
_.concat([1, 2, 3], [4, 5, 6]);
// => [1, 2, 3, 4, 5, 6];
curry :: (* -> a) -> (* -> a)
Returns a curried equivalent of the provided function. The curried function has two unusual capabilities. First, its arguments needn't be provided one at a time. If f is a ternary function and g is R.curry(f), the following are equivalent:
const sum3 = _.curry((a, b, c) => a + b + c)
sum3(1)(2)(3)
// => 6
sum3(1)(2, 3)
// => 6
sum3(1, 2)(3)
// => 6
sum3(1, 2, 3)
// => 6
drop :: Number -> [a] -> [a]
Returns a new list without the first n elements
_.drop(2, [1, 2, 3, 4])
// => [3, 4]
dropLast :: [a] -> [a]
Returns a new list without the last n elements
_.dropLast(2, [1, 2, 3, 4])
// => [1, 2]
every :: (a -> Boolean) -> [a] -> Boolean
Returns true if every element in the list satisfies the predicate function.
_.every(n => n > 2, [2, 3, 4])
// => false
every(n => n > 2, [3, 4, 5])
// => true
filter :: (a -> Boolean) -> [a] -> [a]
Returns a new list containing only the elements in the list that satisfies the predicated function.
_.filter(n => n > 2, [1, 2, 3, 4])
// => [3, 4]
find :: (a -> Boolean) -> [a] -> void 0 | a
Returns the first element satisfying the predicate function. If no element can be found it returns undefined.
_.find(n => n === 2, [1, 2, 3,4])
// => 2
findIndex :: (a -> Boolean) -> [a] -> Int
Returns the index of first element satisfying the predicate function. If no element can be found it returns -1.
_.findIndex(n => n === 2, [1, 2, 3,4])
// => 1
has :: String -> Object -> Boolean
Returns true if the given object has a property with the specified name.
_.has('a', {a:2})
// => true
_.has('b', {a:2})
// => false
head :: [a] -> a
Returns the first element of a list
_.head([1, 2, 3])
// => 1
includes :: a -> [a] -> Boolean
Returns true if the list includes the given element
_.includes('a', ['a', 'b', 'c'])
// => true
indexOf :: a -> [a] -> Int
Returns the index of the specified element in the list. Returns -1 if the element is not in the list
_.indexOf(1, [0, 1, 2, 3])
// => 1
init :: [a] -> [a]
Returns all elements of the list except the last
_.init([1, 2, 3, 4]])
// => [1, 2, 3]
join :: String -> [a] -> String
Returns a string by concatenating all elements of the list interlaced with the specified string.
_.join('|', ['a', 'b', 'c'])
// => "a|b|c"
### keys :: Object -> [String]
Returns a list of the given objects keys.
```js
_.keys({a: 1, b: 2, c: 3})
// => ["a", "b", "c"]
last :: [a] -> a
Returns the last element of the list.
_.last([1, 2, 3])
// => 3
length :: [a] -> Int
Returns the length of a list / function / string.
_.length([1, 2, 3])
// => 3
map :: (a -> b) -> [a] -> [b]
Returns a new list, constructed by applying the supplied function to every element of the supplied list.
_.map(n => n + 1, [1, 2, 3])
// => [2, 3, 4]
match :: RegExp -> String -> [String | void 0]
Tests a regular expression agains a string and returns a list of matches.
_.match(/a./, 'falaffel')
// => ['al', 'af']
nth :: Int -> [a] -> a
return s the nth element of a list.
_.nth(3, [1, 2, 3, 4, 5])
// => 4
prop :: String -> Object -> a
Returns the specified property of the given object.
_.prop('msg', {msg: 'hello wold'})
// => 'hello world'
props :: [String] -> Object -> [a | void 0]
returns a list of values related to the specified properties.
_.props(['a', 'b', 'c'], {a:1 b: 2, c: 3})
// => [1, 2, 3]
range :: Int -> Int -> [Int]
returns a list of all integers between the two specified numbers. the last number is not included.
_.range(3, 7)
//=> [3, 4, 5, 6]
reduce :: (a -> b -> a) -> a -> [b] -> a
Returns a single item by iterating through the list, successively calling the iterator function and passing it an accumulator value and the current value from the array, and then passing the result to the next call. The iterator function receives two values: (acc, value). It may use R.reduced to shortcut the iteration.
_.reduce((a, b) => a + b, 10, [1, 2, 3])
//=> 16
reduceRight :: (a -> b -> a) -> a -> [b] -> a
Returns a single item by iterating through the list, successively calling the iterator function and passing it an accumulator value and the current value from the array, and then passing the result to the next call.
Similar to reduce, except moves through the input list from the right to the left.
The iterator function receives two values: (acc, value)
_.reduceRight((a, b) => a + b, 10, [1, 2, 3])
// => 16
replace :: RegExp | String -> String -> String
returns a new string by replacing each substring or regex match with a replacement. When given a string as the first argument, only the first occurance of the substring will be replaced.
_.replace(/\d/g, 5, '1, 2, 3, 4')
// => '5, 5, 5, 5'
reverse :: [a] -> [a]
returns a new list with the same elements in reverse order.
_.reverse([1, 2, 3])
// => [3, 2, 1]
slice :: Int -> Int -> [a] -> [a]
returns a new list containing only the elements from the first index(inclusive) to the last index(exclusive)
_.slice(1, 4, [1, 2, 3, 4, 5])
// => [2, 3, 4]
some :: (a -> Boolean) -> [a] -> Boolean
returns true if any of the elements in the list satisfies the predicate function.
_.some(n => n > 2, [0, 1, 2, 3])
// => true
_.some(n => n > 2, [0, 1, 2])
// => false
sort :: [a] -> [a]
returns a sorted copy of the given list based on the sorting function.
_.sort((a, b) => a - b, [2, 3, 1, 4])
// => [1, 2, 3, 4]
split :: String | RegExp -> String -> [String]
returns a list of strings based on the given separator
_.split(/\d/, "I have 3 apples and 2 oranges")
//=> ["I have", "apples and ", "oranges"]
sum :: [Number] -> Number
returns the sum of all numbers in the list
_.sum([1, 2, 3])
// => 6
tail :: [a] -> [a]
returns a copy of the list without the first element
_.tail([1, 2, 3])
//=> [2, 3]
take :: Int -> [a] -> [a]
returns the first n elements of a list
_.take(2, [1, 2, 3, 4])
// => [1, 2]
takeLast :: Int -> [a] -> [a]
returns the last n elements of a list
_.takeLast(2, [1, 2, 3, 4])
// => [3, 4]
test :: RegExp -> String -> Boolean
returns if the RegExp matches the string
_.test(/\d/, 'I have 3 Apples')
// => true
_.test(/\d/, 'I have three Apples')
// => false
toLowerCase :: String -> String
returns a new string where all letters are lower case
_.toLowerCase('I have a dream')
// => 'i have a dream'
toUpperCase :: String -> String
returns a new string where all letters are upper case
_.toLowerCase('I have a dream')
// => 'I HAVE A DREAM'
trim :: String -> String
returns a new string where all leading and trailing spaces has been removed
_.trim(' I have a dream ')
// => 'I have a dream'
values :: Object -> [a]
returns a list of all values in the given Object
_.values({x: 1, y: 2, x: 3})
// => [1, 2, 3]
2.1Kb is too big!
basic.js is just 1.1KB. It contains all the native es5/es6 functions as well as curry and compose.
const _ = require('barely-functional/basic')