Skip to main content

@rbxts/expect > ProxyInstance > _is_proxy

ProxyInstance._is_proxy property

A value attached to all proxies to easily identify them as proxies.

Signature:

_is_proxy: true;

Remarks

If you're wanting to check if something is a proxy, you should typically use isProxy() instead.

Example

if(rawget(value, "_is_proxy") === true) {
return getProxyValue(value);
}