[request_definition]
r = sub, obj, act
[policy_definition]
p = obj, act
[policy_effect]
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
;** | |
;* configuration | |
;* | |
craft_count := 30 ; how many items to be crafted | |
practice_mode := false | |
macro_keys := [ [5, 8] ] ; [ [macro key, duration in seconds], ... ] | |
start_hotkey = F10 ; key to start the script | |
stop_hotkey = F12 ; key to cancel & reload the script | |
exit_hotkey = F11 ; key to force exit the script | |
craft_menu_key = N ; key to open craft menu |
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
import _ = require("lodash"); | |
test("foo", () => { | |
const input = { | |
a: { c: { d: 1, e: 2 } }, | |
f: { g: 3 } | |
}; | |
console.log(parserRunner(input)); | |
}); |
git checkout <dest-branch>
git pull origin <dest-branch>