in Modules/common.js [158:168]
function returnSlowDownError(callback) {
var msg = {
"error": "slow_down"
};
var response = {
statusCode: 400,
headers: {"content-type": "application/json", "cache-control": "no-store"},
body: JSON.stringify(msg),
};
callback(null, response);
}