1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.isByteArray = void 0;
|
4 | const isByteArray = (input) => {
|
5 | if (input == null || typeof input != 'object')
|
6 | return false;
|
7 | return isFinite(input.length) && input.length >= 0;
|
8 | };
|
9 | exports.isByteArray = isByteArray;
|
10 | //# sourceMappingURL=utils.js.map |
\ | No newline at end of file |