Current Path : /home/infinitibizsol/insurcrm.infinitibizsol.com/node_modules/core-js/internals/ |
Current File : /home/infinitibizsol/insurcrm.infinitibizsol.com/node_modules/core-js/internals/to-offset.js |
'use strict'; var toPositiveInteger = require('../internals/to-positive-integer'); var $RangeError = RangeError; module.exports = function (it, BYTES) { var offset = toPositiveInteger(it); if (offset % BYTES) throw new $RangeError('Wrong offset'); return offset; };