Skip to content

Commit

Permalink
Version 0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CrossEye committed Jan 16, 2022
1 parent 95d897e commit c207cf1
Show file tree
Hide file tree
Showing 12 changed files with 2,341 additions and 1,148 deletions.
3,476 changes: 2,330 additions & 1,146 deletions dist/ramda.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ramda.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -38,7 +38,7 @@
"fantasy-land"
],
"sideEffects": false,
"version": "0.27.2",
"version": "0.28.0",
"homepage": "https://ramdajs.com/",
"license": "MIT",
"repository": {
Expand Down
1 change: 1 addition & 0 deletions source/collectBy.js
Expand Up @@ -7,6 +7,7 @@ import _reduce from './internal/_reduce.js';
*
* @func
* @memberOf R
* @since v0.28.0
* @category List
* @typedefn Idx = String | Int | Symbol
* @sig Idx a => (b -> a) -> [b] -> [[b]]
Expand Down
1 change: 1 addition & 0 deletions source/count.js
Expand Up @@ -7,6 +7,7 @@ import curry from './curry.js';
*
* @func
* @memberOf R
* @since v0.28.0
* @category List
* @sig (a -> Boolean) -> [a] -> Number
* @param {Function} predicate to match items against
Expand Down
1 change: 1 addition & 0 deletions source/modify.js
Expand Up @@ -11,6 +11,7 @@ import modifyPath from './modifyPath.js';
*
* @func
* @memberOf R
* @since v0.28.0
* @category Object
* @sig Idx -> (v -> v) -> {k: v} -> {k: v}
* @param {String|Number} prop The property to be modified.
Expand Down
1 change: 1 addition & 0 deletions source/modifyPath.js
Expand Up @@ -16,6 +16,7 @@ import _modify from './internal/_modify.js';
*
* @func
* @memberOf R
* @since v0.28.0
* @category Object
* @sig [Idx] -> (v -> v) -> {k: v} -> {k: v}
* @param {Array} path The path to be modified.
Expand Down
1 change: 1 addition & 0 deletions source/on.js
Expand Up @@ -9,6 +9,7 @@ import curryN from './internal/_curryN.js';
*
* @func
* @memberOf R
* @since v0.28.0
* @category Function
* @sig ((a, a) -> b) -> (c -> a) -> c -> c -> b
* @param {Function} f a binary function
Expand Down
1 change: 1 addition & 0 deletions source/partialObject.js
Expand Up @@ -8,6 +8,7 @@ import _curry2 from './internal/_curry2.js';
*
* @func
* @memberOf R
* @since v0.28.0
* @category Function
* @sig (({ a, b, c, ..., n }) -> x) -> { a, b, c, ...} -> ({ d, e, f, ..., n } -> x)
* @param {Function} f
Expand Down
1 change: 1 addition & 0 deletions source/promap.js
Expand Up @@ -15,6 +15,7 @@ import _xpromap from './internal/_xpromap.js';
*
* @func
* @memberOf R
* @since v0.28.0
* @category Function
* @sig (a -> b) -> (c -> d) -> (b -> c) -> (a -> d)
* @sig Profunctor p => (a -> b) -> (c -> d) -> p b c -> p a d
Expand Down
1 change: 1 addition & 0 deletions source/unwind.js
Expand Up @@ -10,6 +10,7 @@ import _assoc from './internal/_assoc.js';
*
* @func
* @memberOf R
* @since v0.28.0
* @category Object
* @sig String -> {k: [v]} -> [{k: v}]
* @param {String} key The key to determine which property of the object should be unwind
Expand Down
1 change: 1 addition & 0 deletions source/whereAny.js
Expand Up @@ -13,6 +13,7 @@ import _has from './internal/_has.js';
*
* @func
* @memberOf R
* @since v0.28.0
* @category Object
* @sig {String: (* -> Boolean)} -> {String: *} -> Boolean
* @param {Object} spec
Expand Down

0 comments on commit c207cf1

Please sign in to comment.