Cloud foundry Error : Array.includes is not a function

Cloud foundry Error : Array.includes is not a function

我正在尝试遍历 fs 库在我的 node.js 应用程序中返回的数组。在我的本地机器上,以下代码运行良好:

var fs = require('fs');

var data = fs.readdirSync("<directory>");
if(data.includes('a')){
    console.log('value found!');
}

但是当我在 CloudFoundry 中上传相同的应用程序时,出现错误:

Error: data.includes is not a function

谁能解释一下这可能是什么原因。

"Includes" 不适用于节点 5.x 因此,请检查节点 version.In 以使其在当前 version.just 中正常工作,请遵循以下 code.or您将节点升级到版本 6。

if(data.indexOf('a')> -1){
    console.log('value found!');
}