()
| 71 | } |
| 72 | |
| 73 | pop(): PdfObject | undefined { |
| 74 | const value = this.items.pop(); |
| 75 | |
| 76 | if (value !== undefined) { |
| 77 | this.dirty = true; |
| 78 | } |
| 79 | |
| 80 | return value; |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Insert item at index, shifting subsequent items. |
no outgoing calls
no test coverage detected