New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

zoomjs

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zoomjs - npm Package Compare versions

Comparing version 2.5.0 to 2.6.0

writer/index.js

20

io/IO.js

@@ -53,3 +53,3 @@ 'use strict';

* @param {A} value The value to put in the IO
* @return {IO<E, A>}
* @return {IO<A>}
*/

@@ -88,4 +88,4 @@ IO.of = function (value) {

* @param {function} transform The function to chain
* @param {IO<E, A>} io The io instance
* @return {IO<E, B>}
* @param {IO<A>} io The io instance
* @return {IO<B>}
*/

@@ -117,4 +117,4 @@ IO.chain = (0, _curry2.default)(function (transform, io) {

* @param {function} transform The function to apply
* @param {IO<E, A>} io The io instance
* @return {IO<E, B>}
* @param {IO<A>} io The io instance
* @return {IO<B>}
*/

@@ -147,4 +147,4 @@ IO.map = (0, _curry2.default)(function (transform, io) {

* @param {Apply<function>} apply The apply instance.
* @param {IO<E, A>} io The io instance
* @return {IO<E, B>}
* @param {IO<A>} io The io instance
* @return {IO<B>}
*/

@@ -187,3 +187,3 @@ IO.ap = (0, _curry2.default)(function (apply, io) {

* @param {function} transform The function to chain
* @return {IO<E, B>}
* @return {IO<B>}
*/

@@ -213,3 +213,3 @@ IO.prototype.chain = function chain(transform) {

* @param {function} transform The function to apply
* @return {IO<E, B>}
* @return {IO<B>}
*/

@@ -240,3 +240,3 @@ IO.prototype.map = function map(transform) {

* @param {Apply<function>} apply The apply instance.
* @return {IO<E, B>}
* @return {IO<B>}
*/

@@ -243,0 +243,0 @@ IO.prototype.ap = function ap(apply) {

{
"name": "zoomjs",
"version": "2.5.0",
"version": "2.6.0",
"description": "Helpful abstractions for functional programming in javascript.",

@@ -34,3 +34,2 @@ "main": "index.js",

"dependencies": {
"esdoc": "^0.5.2",
"fantasy-land": "^3.3.0",

@@ -37,0 +36,0 @@ "ramda": "^0.24.1"

@@ -28,2 +28,3 @@ # Zoom . js

- [Validation](https://dustinws.github.io/zoom/Validation.html)
- [Writer](https://dustinws.github.io/zoom/Writer.html)

@@ -30,0 +31,0 @@ ---

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