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: Export extend function too, use Object.keys Created Sept. 2, 2016, 3:05 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..b9e9a2f050252ae0ac6d4d7d1a1919ff812c1d7a
--- /dev/null
+++ b/lib/coreUtils.js
@@ -0,0 +1,34 @@
+/*
+ * 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)
+{
+ let descriptor = {};
+ let keys = Object.keys(properties);
+
+ for (let key of keys)
+ descriptor[key] = Object.getOwnPropertyDescriptor(properties, key);
+
+ return descriptor;
+}
+exports.desc = desc;
+
+function extend(cls, properties)
+{
+ return Object.create(cls.prototype, desc(properties));
+}
+exports.extend = extend;
« 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