Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| function findValues(obj, key){ | |
| return findValuesHelper(obj, key, []); | |
| } | |
| function findValuesHelper(obj, key, list) { | |
| if (!obj) return list; | |
| if (obj instanceof Array) { | |
| for (var i in obj) { | |
| list = list.concat(findValuesHelper(obj[i], key, [])); | |
| } |
| 1. Install Xcode, if you haven't already. | |
| a. Once installed, run Xcode and accept the license agreement. | |
| b. Go into Xcode Prefs (Cmd + ,), go to Downloads, and install "Command Line Tools for Xcode" (or something named similarily) | |
| 2. Install Homebrew (copy and paste the following into your terminal): | |
| ```bash | |
| ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" |