Skip to content

Commit

Permalink
Version 0.27.2
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchambers committed Jan 11, 2022
1 parent 4d8e8f0 commit 1a5d40b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions dist/ramda.js
@@ -1,6 +1,6 @@
// Ramda v0.27.1
// Ramda v0.27.2
// https://github.com/ramda/ramda
// (c) 2013-2020 Scott Sauyet, Michael Hurley, and David Chambers
// (c) 2013-2022 Scott Sauyet, Michael Hurley, and David Chambers
// Ramda may be freely distributed under the MIT license.

(function (global, factory) {
Expand Down Expand Up @@ -8729,7 +8729,7 @@
sequence(of, map(f, traversable));
});

var ws = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003' +
var ws = '\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u2000\u2001\u2002\u2003' +
'\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028' +
'\u2029\uFEFF';
var zeroWidth = '\u200b';
Expand All @@ -8749,7 +8749,7 @@
* R.trim(' xyz '); //=> 'xyz'
* R.map(R.trim, R.split(',', 'x, y, z')); //=> ['x', 'y', 'z']
*/
var trim = !hasProtoTrim || (ws.trim() || !zeroWidth.trim()) ?
var trim = !hasProtoTrim || ws.trim() || !zeroWidth.trim() ?
_curry1(function trim(str) {
var beginRx = new RegExp('^[' + ws + '][' + ws + ']*');
var endRx = new RegExp('[' + ws + '][' + ws + ']*$');
Expand Down
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.1",
"version": "0.27.2",
"homepage": "https://ramdajs.com/",
"license": "MIT",
"repository": {
Expand Down

0 comments on commit 1a5d40b

Please sign in to comment.