mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 09:18:26 -04: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;
|
|
};
|