摘要:
function watch(obj, name){ var console_log = console.log return new Proxy(obj, { get(target, p, receiver){ // 过滤没用的信息,不进行打印 if (p "Math" || p "isNaN" 阅读全文
摘要:
function customBase64Encode(input) { const customAlphabet = "Dkdpgh2ZmsQB80/MfvV36XI1R45-WUAlEixNLwoqYTOPuzKFjJnry79HbGcaStCe"; let encoded = ''; for 阅读全文
摘要:
function bytesToString(arr) { var str = ''; arr = new Uint8Array(arr); for (var i in arr) { str += String.fromCharCode(arr[i]); } return str; } var Co 阅读全文
摘要:
tom@ubuntu:~/androidSource/aosp$ source build/envsetup.sh tom@ubuntu:~/androidSource/aosp$ lunch You're building on Linux Lunch menu... pick a combo: 阅读全文