(obj, prop)
| 11 | //------------------------------------------------------------------------------ |
| 12 | |
| 13 | function toPrimordialsName(obj, prop) { |
| 14 | return obj + toUcFirst(prop); |
| 15 | } |
| 16 | |
| 17 | function toUcFirst(str) { |
| 18 | return str[0].toUpperCase() + str.slice(1); |
no test coverage detected
searching dependent graphs…