mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 09:19:30 +08:00
10 lines
No EOL
282 B
Text
10 lines
No EOL
282 B
Text
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = isArrayLike;
|
|
function isArrayLike(value) {
|
|
return value && typeof value.length === 'number' && value.length >= 0 && value.length % 1 === 0;
|
|
}
|
|
module.exports = exports['default']; |