UNPKG
pbxproj
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
parse & stringify xcode pbxproj format
github.com/phantasien/pbxproj
phantasien/pbxproj
pbxproj
/
index.js
11 lines
(8 loc)
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
parser =
require
(
'./lib/parser'
);
var
PBXProjExporter
=
require
(
'./lib/exporter'
);
exports
.
parse
=
function
(
str
) {
return
parser.
parse
(str); };
exports
.
stringify
=
function
(
obj
) {
return
(
new
PBXProjExporter
()).
stringify
(obj); };