/ cloudformation-templates / node_modules / aws-cdk / node_modules / async / internal / isArrayLike.js
isArrayLike.js
1 'use strict'; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.default = isArrayLike; 7 function isArrayLike(value) { 8 return value && typeof value.length === 'number' && value.length >= 0 && value.length % 1 === 0; 9 } 10 module.exports = exports['default'];