babel-core: Uncaught TypeError: Невозможно прочитать свойство 'keys' из undefined
Это мое index.html
:
<!DOCTYPE html>
<html lang='ru'>
<head>
<meta charset='utf-8'/>
<title>Sandbox</title>
<script src='https://cdnjs.cloudflare.com/ajax/libs/babel-core/6.1.19/browser.min.js'></script>
<script src='js/index.js' type='text/babel'></script>
</head>
<body>
<div id='foo'></div>
</body>
</html>
Это мое js/index.js
файл:
"use strict";
window.onload = function(){
const stuff = () => document.getElementById('foo').textContent = 'Hello!'
stuff()
}
Я получаю сообщение об ошибке в Google Chrome v64.0.3282.140 при открытии моего HTML-файла:
Почему это происходит?