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
| ### Keybase proof | |
| I hereby claim: | |
| * I am jnak on github. | |
| * I am jnak (https://keybase.io/jnak) on keybase. | |
| * I have a public key ASD1jggGUN0i-W0K5IwBL70HoVE5Ek_BVi6zDkDrI9cMVwo | |
| To claim this, I am signing this object: |
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
| const mergeResolverObjects = (baseMap, inputMap) => { | |
| const mergedMap = {...baseMap}; | |
| Object.keys(inputMap).forEach((typeName) => { | |
| mergedMap[typeName] = (obj, args, context, info) => { | |
| let inputResolved = inputMap[typeName]; | |
| if (typeof inputResolved === 'function') { | |
| inputResolved = inputResolved(obj, args, context, info); | |
| } |
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
| class Icu4c < Formula | |
| desc "C/C++ and Java libraries for Unicode and globalization" | |
| homepage "http://site.icu-project.org/" | |
| url "https://ssl.icu-project.org/files/icu4c/56.1/icu4c-56_1-src.tgz" | |
| mirror "https://fossies.org/linux/misc/icu4c-56_1-src.tgz" | |
| version "56.1" | |
| sha256 "3a64e9105c734dcf631c0b3ed60404531bce6c0f5a64bfe1a6402a4cc2314816" | |
| head "https://ssl.icu-project.org/repos/icu/icu/trunk/", :using => :svn |