1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 11:04:00 +03:00
This commit is contained in:
Rob Rix 2015-10-07 19:36:58 -04:00
parent eb62a4e08f
commit 7953cbed82

View File

@ -8,6 +8,7 @@ enum JSONLeaf {
case Null
}
extension JSON {
init?(path: Swift.String) {
guard let data = try? NSData(contentsOfFile: path, options: []) else { return nil }