mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 19:49:29 +08:00
5 lines
155 B
Text
5 lines
155 B
Text
'use strict';
|
|
|
|
module.exports = function isByteValue(value) {
|
|
return typeof value === 'number' && value >= 0 && value <= 255 && (value | 0) === value;
|
|
};
|