We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1921863 commit 7a0f7e8Copy full SHA for 7a0f7e8
app.html
@@ -295,6 +295,13 @@
295
result.reject = reject;
296
return result;
297
};
298
+const _normalizeEl = el => ({
299
+ nodeName: el.nodeName,
300
+ tagName: el.tagName,
301
+ attrs: el.attrs,
302
+ value: el.value,
303
+ childNodes: el.childNodes ? el.childNodes.map(childEl => _normalizeEl(childEl)) : [],
304
+});
305
306
const loginPromise = _makeNullPromise();
307
let loginToken;
0 commit comments