Bones/node_modules/es6-shim/full.html

12 lines
257 B
HTML
Raw Normal View History

2017-05-17 13:45:25 -04:00
<html>
<head>
<script src="./node_modules/es5-shim/es5-shim.js"></script>
<script src="./es6-shim.js"></script>
<script>
Promise.resolve(2);
try { Promise(); } catch (e) { alert(e); }
try { new Promise(); } catch (e) { alert(e); }
</script>
</head>
</html>