@graphql-tools/utils
Version:
Common package containing utils and types for GraphQL tools
28 lines (27 loc) • 988 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.isIterableObject = isIterableObject;
exports.isObjectLike = isObjectLike;
exports.isPromise = isPromise;
exports.promiseReduce = promiseReduce;
exports.hasOwnProperty = hasOwnProperty;
const map_maybe_promise_js_1 = require("./map-maybe-promise.js");
function isIterableObject(value) {
return value != null && typeof value === 'object' && Symbol.iterator in value;
}
function isObjectLike(value) {
return typeof value === 'object' && value !== null;
}
function isPromise(value) {
return value?.then != null;
}
function promiseReduce(values, callbackFn, initialValue) {
let accumulator = initialValue;
for (const value of values) {
accumulator = (0, map_maybe_promise_js_1.mapMaybePromise)(accumulator, resolved => callbackFn(resolved, value));
}
return accumulator;
}
function hasOwnProperty(obj, prop) {
return Object.prototype.hasOwnProperty.call(obj, prop);
}
;