one
Version:
One is a new React Framework that makes Vite serve both native and web.
14 lines (12 loc) • 439 B
JavaScript
function _type_of(obj) {
"@swc/helpers - typeof";
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
}
function isZeroQuery(obj) {
if (!obj) return false;
if ((typeof obj === "undefined" ? "undefined" : _type_of(obj)) !== "object") return false;
if (!obj.ast || !obj.ast.table) return false;
return true;
}
export { isZeroQuery };
//# sourceMappingURL=isZeroQuery.native.js.map