(v)
| 3252 | // 8.3 Miscellaneous |
| 3253 | |
| 3254 | function IsNonNegativeNumber(v) { |
| 3255 | if (typeof(v) != "number") |
| 3256 | return false; |
| 3257 | if (isNaN(v)) |
| 3258 | return false; |
| 3259 | return v >= 0; |
| 3260 | } |
| 3261 | |
| 3262 | class TextDecoderStream extends TransformStream { |
| 3263 | #decoder; |
no outgoing calls
no test coverage detected