Zhouyiping 5a7c95461a first commit 3 giorni fa
..
lib 5a7c95461a first commit 3 giorni fa
CHANGELOG.md 5a7c95461a first commit 3 giorni fa
LICENSE 5a7c95461a first commit 3 giorni fa
README.md 5a7c95461a first commit 3 giorni fa
package.json 5a7c95461a first commit 3 giorni fa

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