Skip to content

Instantly share code, notes, and snippets.

@ile
Created April 8, 2013 18:25
Show Gist options
  • Save ile/5339207 to your computer and use it in GitHub Desktop.
Save ile/5339207 to your computer and use it in GitHub Desktop.
exports.sliceDomain = sliceDomain;
function sliceDomain (list, skip, limit) {
if (typeof skip === 'undefined') skip = 0;
if (limit < 0)
return list.slice(limit);
else
return list.slice(skip, skip + limit);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment