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.

17 lines (16 loc) 362 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = once; function once(fn) { function wrapper(...args) { if (fn === null) return; var callFn = fn; fn = null; callFn.apply(this, args); } Object.assign(wrapper, fn); return wrapper; } module.exports = exports.default;