Uneventful
    Preparing search index...

    Module uneventful/utils

    Utilities that aren't part of Uneventful's core feature set, but are exposed anyway, because they're boilerplate that can save duplication elsewhere if you happen to need them.

    Scheduling

    batch

    Create a batch processing queue from the given processing loop and scheduling function.

    Batch

    A generic batch processing queue, implemented as a set. (So items are processed at most once per batch run.)

    Data Structures

    arrayEq

    Return true if the supplied parameters are the same object/value, or are arrays with identical contents.

    GeneratorBase

    A pseudo-constructor for the abstract ancestor type of all generators, useful for testing whether something is instanceof Generator.

    isArray

    Shorthand for Array.isArray()

    setMap

    Set a value in a Map or WeakMap, and return the value.

    Functions and Decorators

    apply

    Calls the target function with the given object as the this value and the elements of given array as the arguments. (Shorthand for Reflect.apply)

    CallableObject

    A base class for creating callable objects.

    decorateMethod

    Helper for creating hybrid legacy/TC39 decorator/wrapper functions, e.g.:

    isFunction

    Is the given value a function? (Shorthand for typeof f === "function")

    isGeneratorFunction

    Is the given function a native generator function?