PHP WebShell
Текущая директория: /opt/BitGoJS/modules/express/node_modules/@sinonjs/samsam/lib
Просмотр файла: is-iterable.js
"use strict";
/**
* Returns `true` when the argument is an iterable, `false` otherwise
*
* @alias module:samsam.isIterable
* @param {*} val - A value to examine
* @returns {boolean} Returns `true` when the argument is an iterable, `false` otherwise
*/
function isIterable(val) {
// checks for null and undefined
if (typeof val !== "object") {
return false;
}
return typeof val[Symbol.iterator] === "function";
}
module.exports = isIterable;
Выполнить команду
Для локальной разработки. Не используйте в интернете!