apisearch-ui
Version:
Javascript User Interface of Apisearch.
13 lines (12 loc) • 339 B
JavaScript
;
exports.__esModule = true;
exports.isLocationState = void 0;
function isLocationState(object) {
var myInterface = object;
if (myInterface === null) {
return false;
}
return ((myInterface.query !== undefined) &&
(myInterface.result !== undefined));
}
exports.isLocationState = isLocationState;