Skip to content

asamuzaK/gyp-parser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gyp-parser

GYP file format parser in JS

import { parse } from 'gyp-parser';

parse(gypFileSource);

// e.g.

parse("{ 'variable': [ 'array' ] }")
  // -> { variable: [ 'array' ] }

eval() works most of the time as well, but does not support fancier features like implicit string concatenation.

This package is exclusively a parser and does not perform any I/O.

LICENSE

MIT

About

GYP file format parser in JS

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%