Mohammad Asif cf937194cb Removed un-waned things 1. 5 ay önce
..
lib cf937194cb Removed un-waned things 1. 5 ay önce
CHANGELOG.md cf937194cb Removed un-waned things 1. 5 ay önce
LICENSE cf937194cb Removed un-waned things 1. 5 ay önce
README.md cf937194cb Removed un-waned things 1. 5 ay önce
package.json cf937194cb Removed un-waned things 1. 5 ay önce

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