📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-30 02:14:12
📂
/ (Root)
/
home
/
orkouolp
/
nodevenv
/
node_js
/
orkofarms.com
/
18
/
lib
/
node_modules
/
arrify
📍 /home/orkouolp/nodevenv/node_js/orkofarms.com/18/lib/node_modules/arrify
🔄 Refresh
✏️
Editing: index.js
Writable
'use strict'; const arrify = value => { if (value === null || value === undefined) { return []; } if (Array.isArray(value)) { return value; } if (typeof value === 'string') { return [value]; } if (typeof value[Symbol.iterator] === 'function') { return [...value]; } return [value]; }; module.exports = arrify;
💾 Save Changes
❌ Cancel