hz-zhhq-web/node_modules/get-own-enumerable-property...
zzyuan 03ac614884 前端提交3 2025-02-25 13:45:28 +08:00
..
lib 前端提交3 2025-02-25 13:45:28 +08:00
CHANGELOG.md 前端提交3 2025-02-25 13:45:28 +08:00
LICENSE 前端提交3 2025-02-25 13:45:28 +08:00
README.md 前端提交3 2025-02-25 13:45:28 +08:00
package.json 前端提交3 2025-02-25 13:45:28 +08:00

README.md

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}))
// []