Last active
October 17, 2015 22:34
-
-
Save scpike/77f1c362b82750b53559 to your computer and use it in GitHub Desktop.
Sorts the lines in your input.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(x) { | |
return x.split("\n").sort().join("\n"); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment