(...args)
| 88 | // 自定义错误类 |
| 89 | class CustomError extends Error { |
| 90 | constructor(...args) { |
| 91 | super(args.pop()); |
| 92 | if (args[0]) this.name = args[0] + "Error"; |
| 93 | } |
| 94 | } |
| 95 | // 生成虚拟GUID·缓存Mac地址 |
| 96 | const getMAc = key => { |
nothing calls this directly
no outgoing calls
no test coverage detected