first commit

This commit is contained in:
2020-02-02 15:24:30 +07:00
commit 61dfa00b20
2410 changed files with 152621 additions and 0 deletions

23
node_modules/seedrandom/test/browserified.html generated vendored Normal file
View File

@@ -0,0 +1,23 @@
<html>
<head>
<link rel="stylesheet" href="lib/qunit.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="lib/qunit.js"></script>
<script>
function describe(name, fn) {
QUnit.module(name);
fn();
}
function it(desc, fn) {
QUnit.test(desc, function(a) {
fn();
a.ok(true);
});
}
</script>
<script src="browserified.js"></script>
</body>
</html>