Skip to content

Instantly share code, notes, and snippets.

View Hackice's full-sized avatar
🎯
Focusing

Hackice

🎯
Focusing
  • Shenzhen, China
View GitHub Profile
@Hackice
Hackice / linkmap.js
Created March 16, 2016 04:06 — 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) {