astro-ghostcms/.pnpm-store/v3/files/68/7a2f0803da7877625b1cb507a8f...

6 lines
155 B
Plaintext

'use strict';
module.exports = function isByteValue(value) {
return typeof value === 'number' && value >= 0 && value <= 255 && (value | 0) === value;
};