mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 11:38:14 +08:00
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = function isByteValue(value) {
|
||
|
return typeof value === 'number' && value >= 0 && value <= 255 && (value | 0) === value;
|
||
|
};
|