| 12345678910111213141516171819 | module.exports = function (context) {    // Detects instances of new Buffer(argument)    // where argument is any non literal value.    return {      "NewExpression": function (node) {        if (node.callee.name === 'Buffer' &&          node.arguments[0] &&          node.arguments[0].type != 'Literal') {          return context.report(node, "Found new Buffer");        }      }    };}
 |