Code coverage report for
src/util/isObject.ts
Statements:
100%
(3 / 3)
Branches:
100%
(2 / 2)
Functions:
100%
(1 / 1)
Lines:
100%
(2 / 2)
Ignored:
none
All files
»
src/util/
» isObject.ts
1 2 3 4
1
12676
export function isObject(x: any): x is Object { return x != null && typeof x === 'object'; }