Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

akh.codensity

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

akh.codensity

Akh codensity monad

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
460
decreased by-23.33%
Maintainers
1
Weekly downloads
 
Created
Source

Codensity for the Akh Javascript Monad Transformer Library

Includes both regular codensity monad Codensity and codensity monad transformer CodensityT.

# To use as standalone package
$ npm install --save akh.codensity

# To use as part of akh library
$ npm install --save akh

Usage

The codensity monad/transformer implements the Fantasy Land monad and monoid interfaces.

Fantasy Land logo
// Codensity monad
require('akh.codensity').Codensity
require('akh').Codensity

// Codensity monad transformer
require('akh.codensity').CodensityT
require('akh').CodensityT
Codensity.run(m, k), m.run(k)

Perform a codensity computation m and complete with outer continuation k.

const Codensity = requre('akh.Codensity').Codensity

var c = Codensity.of(3).map(x => -x)

Codensity.run(c, console.log) // logs: -3
c.run(console.log)
CodensityT.run(m, k), m.run(k)

Same as Codensity.run but for transformed types

Contributing

Contributions are welcome.

To get started:

$ cd akh-codensity
$ npm install # install dev packages
$ npm test # run tests

Keywords

FAQs

Package last updated on 03 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc