# gyp-parser **Repository Path**: mirrors_addaleax/gyp-parser ## Basic Information - **Project Name**: gyp-parser - **Description**: GYP file format parser in JS - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-13 - **Last Updated**: 2026-02-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gyp-parser GYP file format parser in JS ```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