/home/techb158/balavpn.abdallabala.com/node_modules/es-abstract/helpers
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/es-abstract/helpers/isByteValue.js (155B)
'use strict';
module.exports = function isByteValue(value) {
return typeof value === 'number' && value >= 0 && value <= 255 && (value | 0) === value;
};