UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

6 lines (5 loc) • 247 B
/** Change enumerability of an object property. */ export function changeEnumerable(obj, prop, enumerable) { const descriptor = Object.getOwnPropertyDescriptor(obj, prop); Object.defineProperty(obj, prop, { ...descriptor, enumerable }); }