Files
rspade_system/node_modules/collect.js/src/methods/shift.js
root bd5809fdbd Reorganize RSpade directory structure for clarity
Improve Jqhtml_Integration.js documentation with hydration system explanation
Add jqhtml-laravel integration packages for traditional Laravel projects

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-24 09:41:48 +00:00

44 lines
899 B
JavaScript

'use strict';
const { isArray, isObject } = require('../helpers/is');
const deleteKeys = require('../helpers/deleteKeys');
module.exports = function shift(count = 1) {
if (this.isEmpty()) {
return null;
}
if (isArray(this.items)) {
if (count === 1) {
return this.items.shift();
}
return new this.constructor(this.items.splice(0, count));
}
if (isObject(this.items)) {
if (count === 1) {
const key = Object.keys(this.items)[0];
const value = this.items[key];
delete this.items[key];
return value;
}
const keys = Object.keys(this.items);
const poppedKeys = keys.slice(0, count);
const newObject = poppedKeys.reduce((acc, current) => {
acc[current] = this.items[current];
return acc;
}, {});
deleteKeys(this.items, poppedKeys);
return new this.constructor(newObject);
}
return null;
};