Skip to content

Instantly share code, notes, and snippets.

View Hackice's full-sized avatar
🎯
Focusing

Hackice

🎯
Focusing
  • Shenzhen, China
View GitHub Profile
@bang590
bang590 / linkmap.js
Last active August 19, 2023 15:24
XCode Linkmap Parser
var readline = require('readline'),
fs = require('fs');
var LinkMap = function(filePath) {
this.files = []
this.filePath = filePath
}
LinkMap.prototype = {
start: function(cb) {