npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

compare-at-paths

1.0.0

@dominictarr

npmHomeRepoSnykSocket
Downloads:413
$ npm install compare-at-paths
DailyWeeklyMonthlyYearly

compare-at-paths

create a compare function that compares given paths into an object.

example

[
  {foo: true, bar: {baz: 1}},
  {foo: true, bar: {baz: 3}},
  {foo: true, bar: {baz: 2}},
  {foo: false, bar: {baz: 1}}
].sort(Compare([['bar', 'baz'], ['foo']]))

output will be

[
  {foo: false, bar: {baz: 1}},
  {foo: true, bar: {baz: 1}},
  {foo: true, bar: {baz: 2}},
  {foo: true, bar: {baz: 3}}
]

if you want a field to be in decending order, use {$reverse: [path...]}

License

MIT