| 215 | } |
| 216 | |
| 217 | const countryNameToCode = country => __guard__(_.find(countries, { country: (country != null ? country.toLowerCase() : undefined) }), x1 => x1.countryCode) |
| 218 | |
| 219 | var titleize = s => // Turns things like 'dungeons-of-kithgard' into 'Dungeons of Kithgard' |
| 220 | _.string.titleize(_.string.humanize(s)).replace( |
nothing calls this directly
no test coverage detected