* Get a typed Uint8Array for %%value%%, creating a copy if necessary * to prevent any modifications of the returned value from being * reflected elsewhere. * * @see: getBytes
(value, name)
| 45 | * @see: getBytes |
| 46 | */ |
| 47 | function getBytesCopy(value, name) { |
| 48 | return _getBytes(value, name, true); |
| 49 | } |
| 50 | exports.getBytesCopy = getBytesCopy; |
| 51 | /** |
| 52 | * Returns true if %%value%% is a valid [[HexString]]. |
nothing calls this directly
no test coverage detected