UNPKG

@wordpress/core-data

Version:
36 lines (34 loc) 1.44 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // packages/core-data/src/utils/normalize-query-for-resolution.js var normalize_query_for_resolution_exports = {}; __export(normalize_query_for_resolution_exports, { default: () => normalizeQueryForResolution }); module.exports = __toCommonJS(normalize_query_for_resolution_exports); function normalizeQueryForResolution(query) { if (!query) { return void 0; } const entries = Object.entries(query).filter( ([k, v]) => (k === "context" || k === "_fields") && v !== void 0 && v !== null ); return entries.length > 0 ? Object.fromEntries(entries) : void 0; } //# sourceMappingURL=normalize-query-for-resolution.cjs.map