芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/node_modules/collect.js/src/methods/nth.js
'use strict'; const values = require('../helpers/values'); module.exports = function nth(n, offset = 0) { const items = values(this.items); const collection = items .slice(offset) .filter((item, index) => index % n === 0); return new this.constructor(collection); };