fast-iterable
Version:
Provides LINQ-like fluent api operations for iterables and async iterables (ES2018+).
16 lines (15 loc) • 670 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isAnyFluentIterable = void 0;
const types_internal_1 = require("./types-internal");
/**
* Return true when the informed value is an fluent iterable, and false otherwise
* @param value the value to be analyzed
* @returns The return is also a type guard, ie, inside an if with that function, the value will be considered an fluent iterable
*/
function isAnyFluentIterable(value) {
return !!(value &&
(value.fluent === types_internal_1.fluentSymbol ||
value.fluent === types_internal_1.fluentSymbolAsync));
}
exports.isAnyFluentIterable = isAnyFluentIterable;