* Push item onto stack. * @see Array#push * @param {Buffer} item * @returns {Number} Stack size.
(item)
| 219 | */ |
| 220 | |
| 221 | push(item) { |
| 222 | assert(Buffer.isBuffer(item)); |
| 223 | this.items.push(item); |
| 224 | return this; |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * Unshift item from stack. |
no outgoing calls
no test coverage detected