projecte_ionic/node_modules/core-js/internals/to-offset.js
2022-02-09 18:30:03 +01:00

8 lines
224 B
JavaScript
Executable file

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;
};