porffor 0.0.0-05f898f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,15 @@
1
+ import compile from '../compiler/wrap.js';
2
+ import fs from 'node:fs';
3
+
4
+ const file = process.argv.slice(2).find(x => x[0] !== '-');
5
+
6
+ const source = fs.readFileSync(file, 'utf8');
7
+
8
+ const { wasm } = await compile(source);
9
+
10
+ // const out = `(async () => { const print = str => process.stdout.write(str); (await WebAssembly.instantiate(Uint8Array.from([${wasm.toString()}]), {'': { p: i => print(i.toString()), c: i => print(String.fromCharCode(i))}})).instance.exports.m()})()`;
11
+ // const out = `new WebAssembly.Instance(new WebAssembly.Module(new Uint8Array([${wasm.toString()}])),{'':{p:i=>process.stdout.write(i.toString())}}).exports.m()`;
12
+ const out = `const a=new WebAssembly.Instance(new WebAssembly.Module(new Uint8Array([${wasm.toString()}])));const b=a.exports.m();console.log(Array.from(new Uint16Array(a.exports.$.buffer,b+4,new Int32Array(a.exports.$.buffer,b,1))).map(x=>String.fromCharCode(x)).join(''))`;
13
+
14
+ console.log(out);
15
+ eval(out);
@@ -0,0 +1,10 @@
1
+ import fs from 'node:fs';
2
+
3
+ let rev = 'unknown';
4
+ try {
5
+ rev = fs.readFileSync(new URL('../.git/refs/heads/main', import.meta.url), 'utf8').trim().slice(0, 7);
6
+ } catch {
7
+ rev = JSON.parse(fs.readFileSync(new URL('../package.json', import.meta.url), 'utf8')).version.split('-')[1].slice(0, 7);
8
+ }
9
+
10
+ export default rev;
package/sw.js ADDED
@@ -0,0 +1,26 @@
1
+ self.addEventListener('install', () => self.skipWaiting());
2
+ self.addEventListener('activate', e => e.waitUntil(self.clients.claim()));
3
+
4
+ const handleFetch = async request => {
5
+ const r = await fetch(request.mode === 'no-cors' ? new Request(request, { credentials: 'omit' }) : request).catch(e => console.error(e));
6
+
7
+ if (r.status === 0) {
8
+ return r;
9
+ }
10
+
11
+ const headers = new Headers(r.headers);
12
+ headers.set('Cross-Origin-Embedder-Policy', 'credentialless');
13
+ headers.set('Cross-Origin-Opener-Policy', 'same-origin');
14
+ // headers.set('Cross-Origin-Resource-Policy', 'cross-origin');
15
+
16
+ return new Response(r.body, { status: r.status, statusText: r.statusText, headers });
17
+ };
18
+
19
+ self.addEventListener('fetch', e => {
20
+ const { request } = e;
21
+ if (request.cache === 'only-if-cached' && request.mode !== 'same-origin') {
22
+ return;
23
+ }
24
+
25
+ e.respondWith(handleFetch(request));
26
+ });
package/t.js ADDED
@@ -0,0 +1,31 @@
1
+ let assert = Object();
2
+
3
+ assert._isSameValue = function (a, b) {
4
+ if (a === b) {
5
+ // Handle +/-0 vs. -/+0
6
+ return a !== 0 || 1 / a === 1 / b;
7
+ }
8
+
9
+ // Handle NaN vs. NaN
10
+ return a !== a && b !== b;
11
+
12
+ // return a === b;
13
+ };
14
+
15
+ assert.sameValue = function (actual, expected) {
16
+ /* try {
17
+ if (assert._isSameValue(actual, expected)) {
18
+ return;
19
+ }
20
+ } catch (error) {
21
+ throw new Test262Error('_isSameValue operation threw');
22
+ } */
23
+
24
+ if (assert._isSameValue(actual, expected)) {
25
+ return;
26
+ }
27
+
28
+ throw new Test262Error('assert.sameValue failed');
29
+ };
30
+
31
+ assert.sameValue("lego".charAt(), "l");
package/tmp.c ADDED
@@ -0,0 +1,58 @@
1
+ #ifdef _WIN32
2
+ #include <windows.h>
3
+ #else
4
+ #include <time.h>
5
+ #endif
6
+
7
+ #include <stdio.h>
8
+
9
+ double aux(double n, double acc1, double acc2) {
10
+ if (n == 0e+0) {
11
+ return acc1;
12
+ }
13
+ if (n == 1e+0) {
14
+ return acc2;
15
+ }
16
+ return aux(n - 1e+0, acc2, acc1 + acc2);
17
+ }
18
+
19
+ double fib(double n) {
20
+ return aux(n, 0e+0, 1e+0);
21
+ }
22
+
23
+ double test(double n, double count) {
24
+ double res = 0;
25
+ double i = 0;
26
+
27
+ i = 0e+0;
28
+ while (i < count) {
29
+ res = fib(n);
30
+ i = i + 1e+0;
31
+ }
32
+ return res;
33
+ }
34
+
35
+ double inline __performance_now() {
36
+ double _time_out;
37
+ #ifdef _WIN32
38
+ LARGE_INTEGER _time_freq, _time_t;
39
+ QueryPerformanceFrequency(&_time_freq);
40
+ QueryPerformanceCounter(&_time_t);
41
+ _time_out = ((double)_time_t.QuadPart / _time_freq.QuadPart) * 1000.;
42
+ #else
43
+ struct timespec _time;
44
+ clock_gettime(CLOCK_MONOTONIC, &_time);
45
+ _time_out = _time.tv_nsec / 1000000.;
46
+ #endif
47
+ return _time_out;
48
+ }
49
+
50
+ int main() {
51
+ double t = 0;
52
+
53
+ t = __performance_now();
54
+ // Sleep(1000);
55
+ printf("%f\n", test(4.6e+1, 1e+7));
56
+ printf("%f\n", (__performance_now() - t));
57
+ }
58
+
package/util/enum.js ADDED
@@ -0,0 +1,20 @@
1
+ export const enumify = (...args) => {
2
+ const obj = {};
3
+
4
+ for (let i = 0; i < args.length; i++) {
5
+ obj[i] = args[i];
6
+ obj[args[i]] = i;
7
+ }
8
+
9
+ return obj;
10
+ };
11
+
12
+ // a procedural enum ;)
13
+ export const procEnum = () => {
14
+ let n = 0;
15
+ return new Proxy({}, {
16
+ get(target, p) {
17
+ return target[p] ?? (target[p] = n++);
18
+ }
19
+ });
20
+ };