mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-23 22:33:17 +00:00
8 lines
224 B
JavaScript
8 lines
224 B
JavaScript
|
var toPositiveInteger = require('../internals/to-positive-integer');
|
||
|
|
||
|
module.exports = function (it, BYTES) {
|
||
|
var offset = toPositiveInteger(it);
|
||
|
if (offset % BYTES) throw RangeError('Wrong offset');
|
||
|
return offset;
|
||
|
};
|