MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / isObject

Function isObject

javascript/selenium-webdriver/lib/util.js:25–27  ·  view source on GitHub ↗

* Determines whether a value should be treated as an object. * @param {?} value The value to test. * @returns {boolean} Whether the value is an object.

(value)

Source from the content-addressed store, hash-verified

23 * @returns {boolean} Whether the value is an object.
24 */
25function isObject(value) {
26 return Object.prototype.toString.call(value) === '[object Object]'
27}
28
29/**
30 * Determines whether a {@code value} should be treated as a promise.

Callers 7

fullyResolvedFunction · 0.70
parseHttpResponseFunction · 0.70
fromWireValueFunction · 0.70
isErrorResponseFunction · 0.70
checkLegacyResponseFunction · 0.70
isIdFunction · 0.70
extractIdFunction · 0.70

Calls 1

callMethod · 0.65

Tested by

no test coverage detected