I hereby claim:
- I am troutowicz on github.
- I am troutowicz (https://keybase.io/troutowicz) on keybase.
- I have a public key ASC564bNVaHgC_aGGohzVqK4yzGYvMBXXWYy29tPMEBzOQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import stampit from 'stampit'; | |
| import assert from 'assert'; | |
| /** | |
| * Get object of non-enum properties | |
| */ | |
| function getNonEnum(target) { | |
| const props = Object.getOwnPropertyNames(target); | |
| const enumOnly = Object.keys(target); | |
| let obj = {}; |
| { | |
| "color_scheme": "Packages/Babel/Monokai Phoenix.tmTheme", | |
| "default_line_ending": "unix", | |
| "draw_white_space": "all", | |
| "ensure_newline_at_eof_on_save": true, | |
| "highlight_modified_tabs": true, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], |
| 'use strict'; | |
| /* | |
| * Equivalent of: | |
| * | |
| * webpack-dev-server | |
| * --config config/webpack/dev-server.config.js | |
| * --progress | |
| * --colors | |
| * --host [IP] |
| #!/bin/bash | |
| # | |
| # tar wrapper that additionally creates a file of md5sums | |
| # | |
| # http://www.g-loaded.eu/2007/12/01/veritar-verify-checksums-of-files-within-a-tar-archive/ | |
| # | |
| dest=$1 | |
| src=$2 |