()
| 17 | |
| 18 | // Get a random tip from the tips array |
| 19 | function _getRandomTip () { |
| 20 | return TIPS[Math.floor(Math.random() * TIPS.length)] |
| 21 | } |
| 22 | |
| 23 | function parseBoolean (value) { |
| 24 | if (typeof value === 'string') { |
no outgoing calls
no test coverage detected
searching dependent graphs…