/** * Returns `true` when the argument is an iterable, `false` otherwise * @alias module:samsam.isIterable * @param {unknown} val - A value to examine * @returns {boolean} Returns `true` when the argument is an iterable, `false` otherwise */ declare function isIterable(val: unknown): boolean; export = isIterable;