mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 10:27:49 +00:00
Apply even more let/const transforms.
This commit is contained in:
2
gte.js
2
gte.js
@@ -23,6 +23,6 @@ import createRelationalOperation from './_createRelationalOperation.js';
|
||||
* _.gte(1, 3);
|
||||
* // => false
|
||||
*/
|
||||
var gte = createRelationalOperation((value, other) => value >= other);
|
||||
const gte = createRelationalOperation((value, other) => value >= other);
|
||||
|
||||
export default gte;
|
||||
|
||||
Reference in New Issue
Block a user