@tepez/mongo-cursor-pagination
Version:
Make it easy to return cursor-paginated results from a Mongo collection
12 lines (10 loc) • 352 B
JavaScript
// This file was created by running mixmax-runner/scripts/migrate-module.sh
// See mixmax-runner/scripts/unmigrate-module.sh for resetting this project
const semver = require('semver');
let main;
if (semver.lt(process.version, '7.6.0')) {
main = require('./dist/node/index.js');
} else {
main = require('./src/index.js');
}
module.exports = main;