mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
12 lines
257 B
HTML
12 lines
257 B
HTML
<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>
|