diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 3535a6b..0000000 --- a/.dockerignore +++ /dev/null @@ -1,5 +0,0 @@ -node_modules -dist -target -package-lock.json -.* diff --git a/src/helper/polyfill-imul.ts b/src/helper/polyfill-imul.ts deleted file mode 100644 index fcf187f..0000000 --- a/src/helper/polyfill-imul.ts +++ /dev/null @@ -1,17 +0,0 @@ -export const polyfillImul = () => { - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/imul - if (!Math.imul) - Math.imul = function(opA, opB) { - opB |= 0; // ensure that opB is an integer. opA will automatically be coerced. - // floating points give us 53 bits of precision to work with plus 1 sign bit - // automatically handled for our convenience: - // 1. 0x003fffff /*opA & 0x000fffff*/ * 0x7fffffff /*opB*/ = 0x1fffff7fc00001 - // 0x1fffff7fc00001 < Number.MAX_SAFE_INTEGER /*0x1fffffffffffff*/ - let result = (opA & 0x003fffff) * opB; - // 2. We can remove an integer coercion from the statement above because: - // 0x1fffff7fc00001 + 0xffc00000 = 0x1fffffff800001 - // 0x1fffffff800001 < Number.MAX_SAFE_INTEGER /*0x1fffffffffffff*/ - if (opA & 0xffc00000 /*!== 0*/) result += ((opA & 0xffc00000) * opB) | 0; - return result | 0; - }; -}; diff --git a/src/static/media/og-image.jpg b/src/static/media/og-image.jpg deleted file mode 100644 index 3c7a587..0000000 Binary files a/src/static/media/og-image.jpg and /dev/null differ