(str)
| 9 | const helper = require('./helper'); |
| 10 | |
| 11 | function firstLetterUpper(str) { |
| 12 | return str.slice(0, 1).toUpperCase() + str.slice(1); |
| 13 | } |
| 14 | |
| 15 | function formatParams(params) { |
| 16 | var keys = Object.keys(params); |
no outgoing calls
no test coverage detected