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