j
Size: a a a
j
N
Рк
M
*/
Рк
Рк
j
*/
> 9007199254740991n + 1n
9007199254740992n
>
N
IS
const waitForElement = (selector) =>
new Promise((resolve) =>
new MutationObserver((mutationsList) => {
mutationsList.forEach((mutation) => {
const node = mutation.addedNodes.find((node) =>
node?.matches(selector)
);
if (node) {
resolve(node);
}
});
}).observe(document.body, { childList: true, subtree: true })
);
очень грубо если, то +- так*/
> 6n**6n**66n
Uncaught RangeError: Maximum BigInt size exceeded
>
M
N
M
IS
j