10 lines
151 B
JavaScript
Raw Normal View History

2016-10-27 15:33:15 +02:00
export default class JSONFormatter {
fromFile(content) {
return JSON.parse(content);
}
toFile(data) {
return JSON.generate(data);
}
}