mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
We weren't using this very much and introduces a dependency between discourse-common and discourse which makes moving to yarn workspaces more difficult. In the future we might user ember-addons properly but for now it's easier to move the code into discourse-common. Note the old folder is still there because at least one plugin was still requiring the old files. It will be removed in the future.
9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
export default function isDescriptor(item) {
|
|
return (
|
|
item &&
|
|
typeof item === "object" &&
|
|
"writable" in item &&
|
|
"enumerable" in item &&
|
|
"configurable" in item
|
|
);
|
|
}
|