mirror of
https://github.com/discourse/discourse.git
synced 2025-02-24 21:17:40 +08:00
10 lines
188 B
Plaintext
10 lines
188 B
Plaintext
![]() |
export default function isDescriptor(item) {
|
||
|
return (
|
||
|
item &&
|
||
|
typeof item === "object" &&
|
||
|
"writable" in item &&
|
||
|
"enumerable" in item &&
|
||
|
"configurable" in item
|
||
|
);
|
||
|
}
|