(actual: any, msg: string)
| 15 | import {stringify} from './stringify'; |
| 16 | |
| 17 | export function assertNumber(actual: any, msg: string): asserts actual is number { |
| 18 | if (!(typeof actual === 'number')) { |
| 19 | throwError(msg, typeof actual, 'number', '==='); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | export function assertNumberInRange( |
| 24 | actual: any, |
no test coverage detected
searching dependent graphs…