mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 18:17:48 +00:00
Apply arrow function transform.
This commit is contained in:
4
gte.js
4
gte.js
@@ -23,8 +23,6 @@ import createRelationalOperation from './_createRelationalOperation.js';
|
||||
* _.gte(1, 3);
|
||||
* // => false
|
||||
*/
|
||||
var gte = createRelationalOperation(function(value, other) {
|
||||
return value >= other;
|
||||
});
|
||||
var gte = createRelationalOperation((value, other) => value >= other);
|
||||
|
||||
export default gte;
|
||||
|
||||
Reference in New Issue
Block a user