debian-mirror-gitlab/core-js/internals/to-offset.js

8 lines
213 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
var toInteger = require('../internals/to-integer');
module.exports = function (it, BYTES) {
var offset = toInteger(it);
if (offset < 0 || offset % BYTES) throw RangeError('Wrong offset');
return offset;
};