上一页 1 ··· 71 72 73 74 75 76 77 78 79 ··· 124 下一页
摘要: https://www.cnblogs.com/hanyanling/p/13472711.html const fs = require('fs'); const { parse } = require("@babel/parser"); const traverse = require("@ba 阅读全文
posted @ 2021-07-13 07:19 AngDH 阅读(256) 评论(0) 推荐(0)
摘要: "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isArrayExpression = isArrayExpression; exports.isAssignmentExpres 阅读全文
posted @ 2021-07-12 21:33 AngDH 阅读(430) 评论(0) 推荐(0)
摘要: function isLiteral(node, opts) { if (!node) return false; const nodeType = node.type; if ("StringLiteral" nodeType || "NumericLiteral" nodeType || "Nu 阅读全文
posted @ 2021-07-12 21:14 AngDH 阅读(47) 评论(0) 推荐(0)
摘要: Reflect对象的设计目的 1.将Object对象的一些明显属于语言内部的方法(比如Object.defineProperty),放到Reflect对象上。现阶段,某些方法同时在Object和Reflect对象上部署,未来的新方法将只部署在Reflect对象上。也就是说,从Reflect对象上可以 阅读全文
posted @ 2021-07-11 14:47 AngDH 阅读(337) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-11 13:15 AngDH 阅读(36) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-09 08:46 AngDH 阅读(24) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq523176585/article/details/110298488 options = { retainLines:true // 保留源代码的行号 comments:true //是否保留注释 compact:true //是否压缩代码 } im 阅读全文
posted @ 2021-07-08 09:46 AngDH 阅读(254) 评论(0) 推荐(0)
摘要: let slice = Array.prototype.slice slice.call(document.querySelectorAll("li")) 阅读全文
posted @ 2021-07-07 21:00 AngDH 阅读(74) 评论(0) 推荐(0)
摘要: for (var i = 1; i < 99999; i++) window.clearInterval(i); 阅读全文
posted @ 2021-07-06 18:00 AngDH 阅读(47) 评论(0) 推荐(0)
摘要: const user = { data:{name:"angdh",age:11}, set age(value){ if(typeof value != "number"){ throw new Error("xxx") } this.data.age = value; }, get age(){ 阅读全文
posted @ 2021-07-03 11:05 AngDH 阅读(67) 评论(0) 推荐(0)
上一页 1 ··· 71 72 73 74 75 76 77 78 79 ··· 124 下一页