Skip to content

Instantly share code, notes, and snippets.

View holocc's full-sized avatar
🎯
Focusing

yahaha holocc

🎯
Focusing
  • BD
  • Beijing
View GitHub Profile
@zmmbreeze
zmmbreeze / analytics.js
Last active July 17, 2024 03:14
GA的源码 analytics.js
(function() {
/**
* 记录方法使用情况的类
* @param {Array.<boolean>} umMap 初始的使用情况
*/
var UsageManager = function(umMap) {
this.umMap = umMap || [];
};
/**
* 记录新的使用情况
@cecilemuller
cecilemuller / launch.json
Last active July 22, 2024 05:49
Run ts-node in VSCode Debugger
{
"version": "0.2.0",
"configurations": [
{
"name": "Example",
"type": "node",
"request": "launch",
"runtimeExecutable": "node",
"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"],