is-get-set-prop is a tiny JavaScript utility to detect if an object property is a getter or setter. It simplifies identifying properties that have custom logic (getters/setters) versus plain data properties. Useful for metaprogramming, creating proxies, or debugging inheritance. It avoids issues with prototype pollution and accurately determines if the property descriptor defines get or set functions. Implemented without external dependencies, offering a lightweight solution for property introspection.