const packageJSON = require('../package.json'); const config = require('../config.json'); function get() { let html = '' + '
' + '' + config.api.get.description + '
' + 'argument | ' + 'available values | ' + 'default | ' + 'restrictions | ' + 'description | '; Object.keys(config.api.post).forEach((argument) => { if (argument === 'endpoints') { return; } let restrictions = config.api.post[argument].restrictions || ''; html += '
---|---|---|---|---|
' + argument + ' | ' + '' + config.api.post[argument].available + ' | ' + '' + config.api.post[argument].default + ' | ' + '' + restrictions + ' | ' + '' + config.api.post[argument].description + ' | ' + '