A tiny functional programming library
barely-functional is a small, highly modular 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()
with an iteratee first, autocurried API. Several
non-native functions inspired by (READ: stolen from) ramdajs are also included.
barely-functional also attempts to guard against unsafe operations by
returning a Maybe
for operations
that can fail. The Maybe
type returned is compliant with the [Fantasy Land]
(https://github.com/fantasyland/fantasy-land) specification.
All functions may be imported individually, thus reducing the footprint of the library even further:
const map = require('barely-functional/map')
npm i barely-functional
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)
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
Adds the specified value to the end of the supplied array.
_.append(5, [1, 2, 3, 4]);
// => [1, 2, 3, 4, 5]
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
Concatenates two arrays.
_.concat([1, 2, 3], [4, 5, 6]);
// => [1, 2, 3, 4, 5, 6];
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 _.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
Returns a new list without the first n
elements
_.drop(2, [1, 2, 3, 4])
// => [3, 4]
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
Returns a new list containing only the elements in the list that satisfy the predicate function.
_.filter(n => n > 2, [1, 2, 3, 4])
// => [3, 4]
Returns Just
the first element satisfying the predicate function. If no
element can be found it returns Nothing()
.
_.find(n => n % 2 === 0, [1, 2, 3, 4])
// => Just(2)
_.find(n => n % 2 === 0, [1, 3, 5])
// => Nothing()
Returns Just
the index of first element satisfying the predicate function.
If no element can be found it returns Nothing()
.
_.findIndex(n => n % 2 === 0, [1, 2, 3, 4])
// => Just(1)
_.findIndex(n => n % 2 === 0, [1, 3, 5])
// => Nothing()
Returns a default if second argument is Nothing(); otherwise unwraps the Just.
_.fromMaybe(5, Just(1))
// => Just(1)
_.fromMaybe(5, Nothing())
// => 5
Returns true
if the given object has a property with the specified name; false
otherwise.
_.has('a', {a:2})
// => true
_.has('b', {a:2})
// => false
Returns the first element of a list.
_.head([1, 2, 3])
// => 1
Returns true
if the list includes the given element; false
otherwise.
_.includes('a', ['a', 'b', 'c'])
// => true
Returns Just
the index of the specified element in the list. Returns
Nothing()
if the element is not in the list.
_.indexOf(1, [0, 1, 2, 3])
// => Just(1)
_.indexOf(5, [0, 1, 2, 3])
// => Nothing()
Returns all elements of the list except the last.
_.init([1, 2, 3, 4]])
// => [1, 2, 3]
Returns a string by concatenating all elements of the list interlaced with the specified string.
_.join('|', ['a', 'b', 'c'])
// => "a|b|c"
Returns a list of the given object's keys.
_.keys({a: 1, b: 2, c: 3})
// => ["a", "b", "c"]
Returns the last element of the list.
_.last([1, 2, 3])
// => 3
Returns the length of a list / function / string.
_.length([1, 2, 3])
// => 3
Returns a new list, constructed by applying the supplied unary function to every element of the supplied list.
_.map(n => n + 1, [1, 2, 3])
// => [2, 3, 4]
Tests a regular expression against a string and returns a list of matches.
_.match(/a./g, 'falafel')
// => ['al', 'af']
Merges two objects into a new object; duplicate keys are resolved as last in wins. As per
Object.assign
, nested arrays and objects are copied by reference.
_.merge({a: 1}, {b: 2});
// => {a: 1, b: 2}
_.merge({a: 1, b: 1}, {b: 2});
// => {a: 1, b: 2}
Merges a list of objects into a new object; duplicate keys are resolved as last in wins. As per
Object.assign
, nested arrays and objects are copied by reference.
_.mergeAll([{a: 1}, {b: 2}, {c: 3}]);
// => {a: 1, b: 2, c: 3}
_.mergeAll([{a: 1}, {b: 2}, {b: 3}]);
// => {a: 1, b: 3}
Returns Just
the nth
element of a list. If the index queried is greater than
the length of the list then return Nothing()
.
_.nth(3, [1, 2, 3, 4, 5])
// => Just(4)
_.nth(10, [1, 2, 3, 4, 5])
// => Nothing()
Returns the values associated with the provided key from each object in list of objects.
_.pluck('a', [{a:1}, {a: 2}, {a: 3}])
// => [1, 2, 3]
Returns the value of the specified property from the given object.
_.prop('msg', {msg: 'hello wold'})
// => 'hello world'
Returns a list of values related to the specified properties.
_.props(['a', 'b', 'c'], {a:1 b: 2, c: 3})
// => [1, 2, 3]
Returns a list of all integers between the two specified numbers. The last number is not included.
_.range(3, 7)
//=> [3, 4, 5, 6]
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).
_.reduce((a, b) => a + b, 10, [1, 2, 3])
//=> 16
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((acc, value) => acc.concat(value), [], [1, 2, 3, 4, 5])
// => [5, 4, 3, 2, 1]
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'
Returns a new list with the same elements in reverse order.
_.reverse([1, 2, 3])
// => [3, 2, 1]
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]
Returns true
if any of the elements in the list satisfy the predicate function.
_.some(n => n > 2, [0, 1, 2, 3])
// => true
_.some(n => n > 2, [0, 1, 2])
// => false
Returns a lexigraphically sorted copy of the given list.
_.sort(['z', 'a', 'h', 'd'])
// => ['a', 'd', 'h', 'z']
Returns a sorted copy of the given list based on the sorting function.
_.sortBy((a, b) => a - b, [2, 3, 1, 4])
// => [1, 2, 3, 4]
Returns a list of strings based on the given separator.
_.split(/\d/, "I have 3 apples and 2 oranges")
//=> ["I have ", " apples and ", " oranges"]
Returns the sum of all numbers in the list.
_.sum([1, 2, 3])
// => 6
Returns a copy of the list without the first element.
_.tail([1, 2, 3])
//=> [2, 3]
Returns the first n
elements of a list.
_.take(2, [1, 2, 3, 4])
// => [1, 2]
Returns true
if the RegExp matches the string; false
otherwise.
_.test(/\d/, 'I have 3 Apples')
// => true
_.test(/\d/, 'I have three Apples')
// => false
Returns a new string where all letters are lower case.
_.toLowerCase('I have a dream')
// => 'i have a dream'
Returns a Nothing if the supplied value is null; A Just otherwise.
_.toMaybe(1)
// => Just(1)
_.toMaybe(null)
// => Nothing
Returns a new string where all letters are upper case.
_.toLowerCase('I have a dream')
// => 'I HAVE A DREAM'
Returns a new string where all leading and trailing spaces have been removed.
_.trim(' I have a dream ')
// => 'I have a dream'
Returns a list of all values in the given object.
_.values({x: 1, y: 2, x: 3})
// => [1, 2, 3]
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')