0.0.2 • Published 4 years ago

config-compiler v0.0.2

Weekly downloads
4
License
ISC
Repository
github
Last release
4 years ago

Config-creator

Create configuration json from json schema.

Example

const config = require('./config');
const schema = require('./schema');
const config_creator = require('config-compiler');

const result_config = config_creator.parse(config, schema);

Creator.parse(config:Object, schema:Object) → Object

Synchronously create json from schema.