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

ramda-adjunct

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ramda-adjunct - npm Package Compare versions

Comparing version 1.9.0 to 1.10.0

src/weaveLazy.js

10

CHANGELOG.md

@@ -0,1 +1,11 @@

<a name="1.10.0"></a>
# [1.10.0](https://github.com/char0n/ramda-adjunct/compare/v1.9.0...v1.10.0) (2017-06-20)
### Features
* add weaveLazy ([8b665d3](https://github.com/char0n/ramda-adjunct/commit/8b665d3))
<a name="1.9.0"></a>

@@ -2,0 +12,0 @@ # [1.9.0](https://github.com/char0n/ramda-adjunct/compare/v1.8.1...v1.9.0) (2017-06-14)

2

package.json

@@ -7,3 +7,3 @@ {

"keywords": "ramda extensions addons cookbook adjunct recipe extras",
"version": "1.9.0",
"version": "1.10.0",
"homepage": "https://github.com/char0n/ramda-adjunct",

@@ -10,0 +10,0 @@ "license": "SEE LICENSE IN LICENSE.md",

@@ -50,3 +50,3 @@ [![CircleCI](https://circleci.com/gh/char0n/ramda-adjunct.svg?style=svg)](https://circleci.com/gh/char0n/ramda-adjunct)

Ramda Adjunct is being automatically tested against node version >=4 <=7.
Ramda Adjunct is being automatically tested against node version >=4 <=8.

@@ -56,3 +56,3 @@ ### Legacy builds

We are building our npm distributions by Webpack to support also legacy versions of node starting from 0.10.48.
Although all tests are run only against node version >=4 <=7, we rely on Webpack to transpile ramda-adjunct
Although all tests are run only against node version >=4 <=8, we rely on Webpack to transpile ramda-adjunct
into legacy ES5. It is also possible that our ES5 distributions run on node versions older than 0.10.48 as

@@ -79,3 +79,4 @@ long as they support ES5.

[1.8.0](https://char0n.github.io/ramda-adjunct/1.8.0), [1.8.1](https://char0n.github.io/ramda-adjunct/1.8.1),
[1.9.0](https://char0n.github.io/ramda-adjunct/1.9.0), [LATEST](https://char0n.github.io/ramda-adjunct)
[1.9.0](https://char0n.github.io/ramda-adjunct/1.9.0), [1.10.0](https://char0n.github.io/ramda-adjunct/1.10.0),
[LATEST](https://char0n.github.io/ramda-adjunct)

@@ -82,0 +83,0 @@ ## Development

@@ -333,2 +333,8 @@ declare var RA: RamdaAdjunct.Static;

/**
* Weave a configuration into function returning the runnable monad like `Reader` or `Free`.
*/
weaveLazy(fn: Function, configAccessor: Function): Function;
weaveLazy(fn: Function): (configAccessor: Function) => Function;
/**
* Identity type.

@@ -335,0 +341,0 @@ */

@@ -49,2 +49,3 @@ // Type

import weave from './weave';
import weaveLazy from './weaveLazy';
// List

@@ -117,2 +118,3 @@ import pickIndexes from './pickIndexes';

export { default as weave } from './weave';
export { default as weaveLazy } from './weaveLazy';
// List

@@ -190,2 +192,3 @@ export { default as pickIndexes } from './pickIndexes';

weave,
weaveLazy,
// List

@@ -192,0 +195,0 @@ pickIndexes,

@@ -20,2 +20,3 @@ import { has } from 'ramda';

* @returns {Boolean} `true` if `val` has a numeric length property and extreme indices defined; `false` otherwise.
* @see {@link RA.isNotArrayLike|isNotArrayLike}

@@ -22,0 +23,0 @@ * @example

@@ -16,3 +16,3 @@ import { complement } from 'ramda';

* @return {Boolean}
* @see {@link http://ramdajs.com/docs/#isArrayLike|isArrayLike}
* @see {@link RA.isArrayLike|isArrayLike}
* @example

@@ -19,0 +19,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