(msg)
| 29 | const kStringConversionBuffer = Symbol('kStringConversionBuffer'); |
| 30 | |
| 31 | function throwFFIArgError(msg) { |
| 32 | // eslint-disable-next-line no-restricted-syntax |
| 33 | const err = new TypeError(msg); |
| 34 | err.code = 'ERR_INVALID_ARG_VALUE'; |
| 35 | throw err; |
| 36 | } |
| 37 | |
| 38 | function throwFFIArgCountError(expected, actual) { |
| 39 | throwFFIArgError( |
no outgoing calls
no test coverage detected
searching dependent graphs…