Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a new recsort method #105

Closed
4 tasks
emilos opened this issue Feb 17, 2020 · 0 comments
Closed
4 tasks

Add a new recsort method #105

emilos opened this issue Feb 17, 2020 · 0 comments

Comments

@emilos
Copy link
Contributor

emilos commented Feb 17, 2020

It would be nice to add a utility to sort objects by key, something like:

const { isPlainObject } = require('pure-conditions')

const recursiveSort = (object) => {
  const newObject = {}
  Object.keys(object).sort().forEach(key => {
    const value = object[key]
    if (isPlainObject(value)) {
      newObject[key] = recursiveSort(value)
    } else {
      newObject[key] = value
    }
  })
  return newObject
}

module.exports = {
  recursiveSort
}

Acceptance criteria

  • add a recsort method to object/recsort.js
  • add specs
  • add docs
  • the method is pure (does not throw in any case)

Useful links

https://stackoverflow.com/questions/5467129/sort-javascript-object-by-key

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant