()
| 1813 | } |
| 1814 | |
| 1815 | function isNumber() { |
| 1816 | const int = parseInt(this) |
| 1817 | return typeof int === 'number' && !isNaN(int) |
| 1818 | } |
| 1819 | |
| 1820 | function getRandom() { |
| 1821 | if (Array.isArray(this) || this instanceof String) |
nothing calls this directly
no outgoing calls
no test coverage detected