• value {any}
    • Returns: {boolean}

    Returns true if the value is a [Proxy][] instance.

    1. const target = {};
    2. const proxy = new Proxy(target, {});
    3. util.types.isProxy(target); // Returns false
    4. util.types.isProxy(proxy); // Returns true