Skip to content

Instantly share code, notes, and snippets.

@vslinko
Created November 12, 2019 08:41
Show Gist options
  • Save vslinko/b2461ab73b0a0e930263cdcff2179801 to your computer and use it in GitHub Desktop.
Save vslinko/b2461ab73b0a0e930263cdcff2179801 to your computer and use it in GitHub Desktop.
class JQ {
constructor(jq) {
this._jq = jq
}
sort(newSort) {
return {...this._jq, sort: newSort}
}
paginate(newPage) {
return {...this._jq, page: newPage}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment