MCPcopy Create free account
hub / github.com/Snowflyt/tinyeffect / isEffectedIterator

Function isEffectedIterator

src/effected.ts:2858–2861  ·  view source on GitHub ↗
(
  value: unknown,
)

Source from the content-addressed store, hash-verified

2856 * @returns
2857 */
2858const isEffectedIterator = (
2859 value: unknown,
2860): value is Iterator<Effect, unknown, unknown> & { _effectedIterator: true } =>
2861 typeof value === "object" && value !== null && (value as any)._effectedIterator === true;
2862
2863/**
2864 * Capitalize the first letter of a string.

Callers 2

andThenMethod · 0.85
handleEffectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected