File: index.html

package info (click to toggle)
node-when 3.7.8%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 820 kB
  • sloc: makefile: 16; sh: 5
file content (17 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <title></title>
    <script type="text/javascript" src="../../es6-shim/Promise.js"></script>
    <script type="text/javascript">
		window.addEventListener('unhandledRejection', function(event) {
			console.log(event);
		}, false);
		Promise.reject(new Error('foo'));
    </script>
</head>
<body>

</body>
</html>