Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/lassiecoder/mutual-funding-app/server/node_modules/memory-pager/

LICENSE /cody/lassiecoder/mutual-funding-app/server/node_modules/memory-pager/LICENSE
29 Views
0 Comments
The MIT License (MIT)

Copyright (c) 2017 Mathias Buus

Permission is hereby granted, free of charge, to any person obtaining a
README.md /cody/lassiecoder/mutual-funding-app/server/node_modules/memory-pager/README.md
29 Views
0 Comments
# memory-pager

Access memory using small fixed sized buffers instead of allocating a huge buffer.
Useful if you are implementin
index.js /cody/lassiecoder/mutual-funding-app/server/node_modules/memory-pager/index.js
7 Views
0 Comments
module.exports = Pager

function Pager (pageSize, opts) {
if (!(this instanceof Pager)) return new Pager(pageSize, opts)

th
package.json /cody/lassiecoder/mutual-funding-app/server/node_modules/memory-pager/package.json
15 Views
0 Comments
{
"name": "memory-pager",
"version": "1.5.0",
"description": "Access memory using small fixed sized buffers",
"main": "i
test.js /cody/lassiecoder/mutual-funding-app/server/node_modules/memory-pager/test.js
5 Views
0 Comments
var tape = require('tape')
var pager = require('./')

tape('get page', function (t) {
var pages = pager(1024)

var page = pa