source:
node_modules/ramda-adjunct/es/internal/compareLength.js
Last change on this file was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 195 bytes |
Line | |
---|---|
1 | import { curry, compose, length } from 'ramda'; |
2 | var compareLength = curry(function (comparator, value, list) { |
3 | return compose(comparator(value), length)(list); |
4 | }); |
5 | export default compareLength; |
Note:
See TracBrowser
for help on using the repository browser.