Skip to content

Instantly share code, notes, and snippets.

@bang590
bang590 / linkmap.js
Last active August 6, 2024 14:59
XCode Linkmap Parser
var readline = require('readline'),
fs = require('fs');
var LinkMap = function(filePath) {
this.files = []
this.filePath = filePath
}
LinkMap.prototype = {
start: function(cb) {