上一页 1 2 3 4 5 6 7 8 9 ··· 107 下一页
摘要: 用于判断一个节点是否是另一个节点的祖先节点。它用于在语法树(AST)中确定节点之间的关系。 阅读全文
posted @ 2023-11-02 11:30 AngDH 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 用于判断给定的语法树节点是否是一个表达式语句。表达式语句是一种只包含一个表达式的语句,并且该表达式后面通常有一个分号。 阅读全文
posted @ 2023-11-02 11:24 AngDH 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq523176585/article/details/126377305 scope.crawl()scope.crawl(); :调用 crawl 方法重新遍历作用域中的所有节点。这是 Babel 的一个功能,它会更新在遍历过程中修改的 AST 节点。 阅读全文
posted @ 2023-11-02 10:46 AngDH 阅读(14) 评论(0) 推荐(0) 编辑
摘要: use yourDatabaseName // 切换到你的数据库名称 db.getCollectionNames().forEach(function(collectionName) { if (collectionName.startsWith("xxxx")) { print(collectio 阅读全文
posted @ 2023-11-01 12:29 AngDH 阅读(57) 评论(0) 推荐(0) 编辑
摘要: https://s.juejin.cn/ds/id3q5Wdh/ 阅读全文
posted @ 2023-10-30 13:50 AngDH 阅读(8) 评论(0) 推荐(0) 编辑
摘要: $0=undefined; var py = "0123456789abcdefghijklmnopqrstuvwxyz"; function v0(t) { return py.charAt(t) } function hy(t, e) { return t & e } function vs(t 阅读全文
posted @ 2023-10-27 16:11 AngDH 阅读(8) 评论(0) 推荐(0) 编辑
摘要: //# sourceURL=xxx eval(` function add(a,b){ debugger; return a + b; }; console.log(add(1,3)); //# sourceURL=angdh.js `) 阅读全文
posted @ 2023-10-27 13:30 AngDH 阅读(18) 评论(0) 推荐(0) 编辑
摘要: var arr = new Uint8Array(8); var crypto = window.crypto || window.webkitCrypto || window.mozCrypto || window.oCrypto || window.msCrypto; if (crypto) { 阅读全文
posted @ 2023-10-27 11:49 AngDH 阅读(247) 评论(0) 推荐(0) 编辑
摘要: uu.HmacSHA256(JSON.stringify(e), t).toString(uu.enc.Base64) def demo2(t, account, password, rsaKey): import hmac import hashlib import base64 aaa = f' 阅读全文
posted @ 2023-10-26 17:31 AngDH 阅读(75) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/u5VGromE6iJmBBUoNaPFmw pip install func_timeout # -*- coding: utf-8 -*- import time from func_timeout import func_set_timeo 阅读全文
posted @ 2023-10-26 15:09 AngDH 阅读(38) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 107 下一页