discourse/app/assets/javascripts/ember-addons/utils/is-descriptor.js.es6

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
188 B
Plaintext
Raw Normal View History

2015-08-11 17:34:02 -04:00
export default function isDescriptor(item) {
return (
item &&
typeof item === "object" &&
"writable" in item &&
"enumerable" in item &&
"configurable" in item
);
}