Skip to content

Instantly share code, notes, and snippets.

@ryoppy
Created July 11, 2013 09:14
Show Gist options
  • Save ryoppy/5973912 to your computer and use it in GitHub Desktop.
Save ryoppy/5973912 to your computer and use it in GitHub Desktop.
オブジェクトのキーでアルファベット順にソート ref: http://qiita.com/ryoppy@github/items/ee1cd051cce4c6668899
var params = {b: 1, a: 5, c: 2};
_.pick(params, _.keys(params).sort()); // {a: 5, b:1, c:2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment