UNPKG
@2bad/bitrix
Version:
beta (3.0.0-beta.0)
latest (2.5.1)
3.0.0-beta.0
2.5.1
2.5.0
2.4.0
2.3.1
2.3.0
2.2.1
2.2.0
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
Bitrix24 REST API client that doesn't suck
github.com/2BAD/bitrix
2BAD/bitrix
@2bad/bitrix
/
build
/
main
/
utils
/
isArray.js
5 lines
(4 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
// Because `Array.isArray` itself give a strange result with `any[]`
exports
.
default
=
(
x
) =>
Array
.
isArray
(x);