UNPKG
@bconnorwhite/json-types
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Type checking for json objects
connorwhite.org/github/json-types
bconnorwhite/json-types
@bconnorwhite/json-types
/
build
/
index.js
9 lines
(7 loc)
•
178 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
exports
.
__esModule
=
true
;
exports
.
isJSONObject
= isJSONObject; ;
function
isJSONObject
(
object
) {
return
typeof
object
===
"object"
&& !
Array
.
isArray
(
object
); }