UNPKG
sugar-language
Version:
latest (2.0.6)
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.0
0.0.1
Language module for the Sugar Javascript utility library.
sugarjs.com
andrewplummer/Sugar
sugar-language
/
common
/
internal
/
isObjectType.js
7 lines
(5 loc)
•
136 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
;
function
isObjectType
(
obj,
type
) {
return
!!obj && (
type
||
typeof
obj) ===
'object'
; }
module
.
exports
= isObjectType;