Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/coreUtils.js

Issue 29350382: Issue 4353 - Remove deprecated __proto__ syntax (Closed)
Patch Set: Missed a file... Created Sept. 1, 2016, 11:52 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/filterClasses.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/coreUtils.js
diff --git a/lib/coreUtils.js b/lib/coreUtils.js
new file mode 100644
index 0000000000000000000000000000000000000000..b5dc7c5ccd318ef6c80435921f26d5d98192e1a5
--- /dev/null
+++ b/lib/coreUtils.js
@@ -0,0 +1,31 @@
+/*
+ * This file is part of Adblock Plus <https://adblockplus.org/>,
+ * Copyright (C) 2006-2016 Eyeo GmbH
+ *
+ * Adblock Plus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 3 as
+ * published by the Free Software Foundation.
+ *
+ * Adblock Plus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+function desc(properties)
+{
+ for (let property in properties)
+ {
+ let value = properties[property];
+ if (value == null || typeof value != "object")
+ properties[property] = {configurable: true, enumerable: true,
+ writable: true, value: value};
+ else
+ value["configurable"] = value["enumerable"] = true;
Wladimir Palant 2016/09/02 08:17:13 How about just calling Object.getOwnPropertyDescri
kzar 2016/09/02 11:53:21 Wow, not sure why I didn't think of that! Done.
+ }
+ return properties;
+}
+exports.desc = desc;
« no previous file with comments | « no previous file | lib/filterClasses.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld