1
轉化我無法弄清楚如何獲得此代碼轉換爲兼容的代碼在Node.js的V4 ENV:[].includes('anything')
Array.prototype.includes - 不與巴貝爾
監守,這將引發在Node.js的V4 Error: includes is not a function...
錯誤
誰能幫我理解爲什麼babel
不會變換.includes()
?我一直在使用巴貝爾預設-ES2015和巴貝爾預設-es2016以及巴貝爾REPL嘗試:Example babel repl code usage
因爲它是polyfillable。 Polyfillable功能不會被轉譯。 – estus
您需要一個polyfill來包含像'.includes()'這樣的ES6方法。 – jfriend00
https://babeljs.io/docs/usage/polyfill/ –