src.app.shared.hjson-parser.hjson-parser.service.ts Maven / Gradle / Ivy
import { Injectable } from '@angular/core';
import * as hjson from 'hjson';
@Injectable()
export class HjsonParserService {
parse(content: string): string {
return JSON.stringify(hjson.parse(content));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy