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