mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 08:34:33 +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;
|
||
|
}
|