FRE-651: CEO coordination notes for founder bio/headshot assets

This commit is contained in:
2026-04-26 07:41:45 -04:00
parent 3d5ff8650c
commit 5f4eb60a98
476 changed files with 67971 additions and 125 deletions

25
node_modules/@stablelib/base64/base64.bench.ts generated vendored Normal file
View File

@@ -0,0 +1,25 @@
// Copyright (C) 2016 Dmitry Chestnykh
// MIT License. See LICENSE file for details.
import { encode, decode } from "./base64";
import { benchmark, report, byteSeq } from "@stablelib/benchmark";
let buf = byteSeq(1024);
const encBuf = encode(buf);
report("Base64 encode", benchmark(() => encode(buf), buf.length));
// Decode benchmark reports MiB/s for decoded MiB, not input.
report("Base64 decode", benchmark(() => decode(encBuf), buf.length));
declare var Buffer: any;
if (typeof Buffer !== "undefined") {
// For comparison with Node.js buffer speed.
const nodeBuf = Buffer.from(buf);
const nodeEncBuf = nodeBuf.toString("base64");
report("Buffer - Base64 encode", benchmark(() =>
nodeBuf.toString("base64"), nodeBuf.length));
report("Buffer - Base64 decode", benchmark(() =>
Buffer.from(nodeEncBuf, "base64"), nodeBuf.length));
}