UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

8 lines (7 loc) 303 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isPropertyGetter = isPropertyGetter; function isPropertyGetter(obj, prop) { const descriptor = Object.getOwnPropertyDescriptor(obj, prop); return !!descriptor && !('value' in descriptor) && !!descriptor.get; }