Skip to content

Instantly share code, notes, and snippets.

View MoShenGuo's full-sized avatar

APP performance data monitoring MoShenGuo

View GitHub Profile
@bang590
bang590 / linkmap.js
Last active August 18, 2025 03:48
XCode Linkmap Parser
var readline = require('readline'),
fs = require('fs');
var LinkMap = function(filePath) {
this.files = []
this.filePath = filePath
}
LinkMap.prototype = {
start: function(cb) {