(o: any)
| 23 | * @internal please do not use. |
| 24 | */ |
| 25 | export function isDict(o: any): o is object { |
| 26 | return Object.prototype.toString.call(o) === '[object Object]'; |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * @internal please do not use. |
no outgoing calls
no test coverage detected