File: index.html

package info (click to toggle)
node-when 3.7.8%2Bds-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 820 kB
  • sloc: javascript: 7,881; makefile: 16; sh: 5
file content (23 lines) | stat: -rw-r--r-- 540 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <title></title>
    <script type="text/javascript" src="../node_modules/curl/src/curl.js"></script>
    <script type="text/javascript">
        curl.config({
            packages: {
                when: { location: '..', main: 'when' },
                benchmark: {
                    location: '../node_modules/benchmark', main: 'benchmark'
                }
            }
        });

        curl(['./promise.js']);
    </script>
</head>
<body>

</body>
</html>