X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmark-utils.mjs;h=202a9a08ac4eb42f79f975e23b0f00f03fc1d9e7;hb=48f5216deed3bc4d9a64e81822fe8d6bd5c5cdcd;hp=ac10249991b7bf1cc6b9345e3fc8e22c4ef189f3;hpb=6c021ab6f04e4ee6a1109648e541e024bfb8f583;p=benchmarks-js.git diff --git a/benchmark-utils.mjs b/benchmark-utils.mjs index ac10249..202a9a0 100644 --- a/benchmark-utils.mjs +++ b/benchmark-utils.mjs @@ -93,5 +93,5 @@ export function generateRandomObject ( * @returns */ export async function sleep (ms) { - return new Promise(resolve => setTimeout(resolve, ms)) + return new Promise((resolve) => setTimeout(resolve, ms)) }