Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

phunctional

LasaleFamine583MIT0.2.1TypeScript support: included

"Almost" functional programming utils methods

phunctional, functional, fp, phi, methods, map, switchcase, switch, case

readme

phunctional

npm Build Status codecov punctional

"Almost" functional programming (typed for TypeScript) utils methods

Why

Wrapping all the methods I usually put within a functional.js file inside my projects, as node module. BTW this is a nice way to make mistake and learn more about functional programming.

Install

$ yarn add phunctional

Usage

The library can be used both with normal JavaScript and TypeScript.

const {switchcase} = require('phunctional');

const awesomeSwitch = {
    aCondition: 'some value',
    anotherCondition: 'some other value'
};

const res = switchcase(awesomeSwitch)('a default value')('aCondition');
console.log(res);
// => some value

Methods

switchcase

Simple switch but composable with object literals. It also can run a function.

Object -> Any -> String

<summary>expand</summary>

  • Object: object of cases to analyze
  • Any: default case as anything you need
  • String: key to check

return case | defaultCase

Returns the choosen case or the defaultCase

map

Classic map on array but without side effects.

Function -> Array

<summary>expand</summary>

  • Function: function to handle the map
  • Array: array of items

return [T] | []

Returns an empy array if the array passed is not valid.

pEach

forEach that returns a Promise and can also handle a delay between iterations.

(Array, [Number]) -> Function -> Promise

<summary>expand</summary>

  • Array: array of items to iterate
  • Number: delay in milliseconds to run each iteration and wait

  • Function: function to handle the single item

return Promise

Returns a Promise with an array of the results of every iteration.

License

MIT © LasaleFamine

changelog

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

0.2.1 (2017-11-05)

Bug Fixes

  • export: the forgotten export (6033495)

0.2.0 (2017-11-05)

Features

  • p-each: added p-each method - forEach promised with optional delay (56f8764)

0.1.0 (2017-09-27)

Features

  • ts-definitions: added type definitions for TypeScript (ddec9c5)