in src/lib/helper.js [249:260]
function _name(str, avoidKeyword = true) {
str = `${str}`;
if (str.indexOf('@') === 0) {
str = `_${str.substr(1)}`;
}
if (str === '__response') {
str = config.response;
} else if (str === '__request') {
str = config.request;
}
return avoidKeyword ? _avoidKeywords(str) : str;
}