Index: lib/coreUtils.js |
diff --git a/lib/coreUtils.js b/lib/coreUtils.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..da02097978dc520fb68a73f8d744951859388148 |
--- /dev/null |
+++ b/lib/coreUtils.js |
@@ -0,0 +1,27 @@ |
+/* |
+ * 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) |
Wladimir Palant
2016/09/02 12:19:48
Since we are only using this for inheritance, how
kzar
2016/09/02 15:06:41
Done.
|
+{ |
+ let descriptor = {}; |
+ |
+ for (let key in properties) |
+ descriptor[key] = Object.getOwnPropertyDescriptor(properties, key); |
Wladimir Palant
2016/09/02 12:19:48
This will fail should we ever hit a property defin
kzar
2016/09/02 15:06:41
Done.
|
+ |
+ return descriptor; |
+} |
+exports.desc = desc; |