(s)
| 21599 | if (s < 0) throw new RangeError('The value "' + s + '" is invalid for option "size"') |
| 21600 | } |
| 21601 | function allocUnsafe(s) { |
| 21602 | return (assertSize(s), createBuffer(s < 0 ? 0 : 0 | checked(s))) |
| 21603 | } |
| 21604 | function fromArrayLike(s) { |
| 21605 | const o = s.length < 0 ? 0 : 0 | checked(s.length), |
| 21606 | i = createBuffer(o) |
no test coverage detected