(options)
| 86 | // the options may be cleaned up and cause a segfault |
| 87 | // when Rebase.prototype.commit is called. |
| 88 | const lockOptionsOnRebase = (options) => (rebase) => { |
| 89 | Object.defineProperty(rebase, "options", { |
| 90 | value: options, |
| 91 | writable: false |
| 92 | }); |
| 93 | return rebase; |
| 94 | }; |
| 95 | |
| 96 | /** |
| 97 | * Initializes a rebase |
no outgoing calls
no test coverage detected
searching dependent graphs…