UNPKG

@travetto/config

Version:

Configuration support

9 lines (7 loc) 211 B
import { Injectable } from '@travetto/di'; import { ConfigParser } from './types.ts'; @Injectable() export class JSONConfigParser implements ConfigParser { ext = ['.json']; parse = JSON.parse.bind(JSON); }