(str, enc)
| 371 | } |
| 372 | |
| 373 | unshiftString(str, enc) { |
| 374 | return this.unshift(Stack.fromString(str, enc)); |
| 375 | } |
| 376 | |
| 377 | insertString(index, str, enc) { |
| 378 | return this.insert(index, Stack.fromString(str, enc)); |
nothing calls this directly
no test coverage detected