Skip to content

Instantly share code, notes, and snippets.

@ArtemRomanovsky
Created January 20, 2021 15:39
Show Gist options
  • Save ArtemRomanovsky/9883c545f978be238fb242709f47465a to your computer and use it in GitHub Desktop.
Save ArtemRomanovsky/9883c545f978be238fb242709f47465a to your computer and use it in GitHub Desktop.
const allData = [...{{state.allData}}];
const page = {{state.offSet}};
const limit = {{state.limit}};
return allData.slice(page * limit, page * limit + limit);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment