UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

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