isProxy

external fun isProxy(value: Any?): Boolean(source)

Returns true if the value is a Proxy instance.

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

Since

v10.0.0