UNPKG

shell-mirror

Version:

Access your Mac shell from any device securely. Perfect for mobile coding with Claude Code CLI, Gemini CLI, and any shell tool.

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;