mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:37:16 +08:00
8 lines
178 B
Plaintext
8 lines
178 B
Plaintext
|
export default function isDescriptor(item) {
|
||
|
return item &&
|
||
|
typeof item === 'object' &&
|
||
|
'writable' in item &&
|
||
|
'enumerable' in item &&
|
||
|
'configurable' in item;
|
||
|
}
|