module.exports = isArrayLike = val => { try { return [...val], true; } catch (e) { return false; } };