Skip to content

Instantly share code, notes, and snippets.

@crutchcorn
Last active November 1, 2021 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crutchcorn/76d5514d16b850b8aab3e0130893413c to your computer and use it in GitHub Desktop.
Save crutchcorn/76d5514d16b850b8aab3e0130893413c to your computer and use it in GitHub Desktop.
const loopUntilAtLeastLength = (arr, wantedSize) => {
if (arr.length < wantedSize) {
return loopUntilAtLeastLength([...arr, ...arr], wantedSize);
} else {
return arr;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment