node-dependency-injection
Version:
The NodeDependencyInjection component allows you to standardize and centralize the way objects are constructed in your application.
18 lines (15 loc) • 313 B
JavaScript
import BaseAdapter from './BaseAdapter'
export default class JsonAdapter extends BaseAdapter {
/**
* @return {string}
*/
static get FORMAT () {
return 'json'
}
/**
* @return {string}
*/
get defaultConfiguration () {
return JSON.stringify(super.defaultConfiguration, null, 2)
}
}