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

6 lines
155 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
module.exports = function isByteValue(value) {
return typeof value === 'number' && value >= 0 && value <= 255 && (value | 0) === value;
};