(value, name, min = 0, max = kMaxLength)
| 131 | } = require('internal/validators'); |
| 132 | // Provide validateInteger() but with kMaxLength as the default maximum value. |
| 133 | const validateOffset = (value, name, min = 0, max = kMaxLength) => |
| 134 | validateInteger(value, name, min, max); |
| 135 | |
| 136 | const { |
| 137 | FastBuffer, |