UNPKG

pbxproj

Version:

parse & stringify xcode pbxproj format

19 lines (14 loc) 284 B
'use strict'; /* * Module dependencies */ var ObjectStage = require('./stage/object'); /* * Create first stage of tree parsing and return ctx */ exports.parse = function (data) { var result = {}; var root = new ObjectStage(result, data); root.run(); return result; };