import { bench, run } from "./runner.mjs";
var myArray = new Array(5);
bench("[1, 2, 3, 4, 5].shift()", () => {
// we do this to prevent constant folding optimizations
if (myArray.length !== 5) myArray.length = 5;
myArray[0] = 1;
myArray[1] = 2;
myArray[2] = 3;
myArray[3] = 4;
myArray[4] = 5;
myArray.shift();
});
await run();
ue@0.1.9' type='application/atom+xml'/>
Age | Commit message (Collapse) | Author | Files | Lines |
|
* Expose name on host component for Vue devtools
* Add changeset
* Update changeset to patch from minor
* [ci] collect stats
* [ci] collect stats
Co-authored-by: leviceccato <leviceccato@users.noreply.github.com>
Co-authored-by: Matthew Phillips <matthew@matthewphillips.info>
|
|
* chore: add description to avoid type error
* fix: fix canonical url type in main head component
|
|
* Add Vercel sponsorship logo
Also normalize other logos
* Add Vercel logo to www
* Add logos to docs
|
|
|
|
|
|
|
|
|
|
* Separate object for featured and community themes
I've split up the two so there's the featured one at the top at the page and community ones below the official themes
* Add community themes and change featured themes
* Add comma after featured object
|
|
|
|
|
|
|
|
|