Skip to content

Instantly share code, notes, and snippets.

View MoShenGuo's full-sized avatar

APP performance data monitoring MoShenGuo

View GitHub Profile
@MoShenGuo
MoShenGuo / linkmap.js
Created March 11, 2019 02:53 — forked from bang590/linkmap.js
XCode Linkmap Parser
var readline = require('readline'),
fs = require('fs');
var LinkMap = function(filePath) {
this.files = []
this.filePath = filePath
}
LinkMap.prototype = {
start: function(cb) {