UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

10 lines (9 loc) 279 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isArrayLike; function isArrayLike(value) { return value && typeof value.length === 'number' && value.length >= 0 && value.length % 1 === 0; } module.exports = exports.default;