stupa-pdf-api/frontend/node_modules/get-own-enumerable-property-symbols
2025-09-01 01:50:35 +02:00
..
CHANGELOG.md Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
LICENSE Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
package.json Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00
README.md Main Features working; Further Debugging needed 2025-09-01 01:50:35 +02:00

get-own-enumerable-property-symbols Build Status

Returns an array of all enumerable symbol properties found directly upon a given object.

Similar to Object.getOwnPropertySymbols but only enumerable keys.

import getOwnEnumPropSymbols from 'get-own-enumerable-property-symbols'

getOwnEnumPropSymbols({ [Symbol()]: undefined })
// [Symbol()]
getOwnEnumPropSymbols(Object.defineProperty({}, Symbol(), {enumerable: false}))
// []