File: index.html

package info (click to toggle)
node-flatted 3.2.7~ds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,428 kB
  • sloc: javascript: 662; php: 209; makefile: 63; sh: 1
file content (19 lines) | stat: -rw-r--r-- 415 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
  <title>flatted</title>
  <script type="module">
  import(
    /^(?:localhost|[0-9.]+)$/.test(location.hostname) ?
    '../esm/index.js' :
    'https://unpkg.com/flatted?module'
  )
  .then((module) => {
    console.log(module);
  });
  </script>
</head>
<body></body>
</html>