enhancementhelp wanted
仓库指标
- 星标
- (200 个星标)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
Currently, invoking:
sortOn([{x: true}, {x: false}], 'x')
Is returning:
[{x: true}, {x: false}]
It would be nice to return the following instead:
[{x: false}, {x: true}]
Cheers! 😄