mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* Switch back to prettier * wip * Update .prettierignore * Update .prettierignore * ignores * Update .prettierignore * Rest * [autofix.ci] apply automated fixes --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
11 lines
201 B
JavaScript
11 lines
201 B
JavaScript
var foo = () => {
|
|
// prettier-ignore
|
|
var D = (i, r) => () => (r || i((r = { exports: {} }).exports, r), r.exports);
|
|
return D;
|
|
};
|
|
|
|
export function test() {
|
|
foo();
|
|
testDone(import.meta.url);
|
|
}
|