This website works better with JavaScript
Startseite
Erkunden
Hilfe
Anmelden
waibao
/
NN2022100801
Beobachten
2
Favorit hinzufügen
0
Fork
0
Dateien
Issues
0
Pull-Requests
0
Wiki
Struktur:
16424bdde8
Branches
Tags
master
NN2022100801
/
addons
/
web
/
node_modules
/
is-object
/
index.js
index.js
103 B
Verlauf
Originalformat
1
2
3
4
5
"use strict";
module.exports = function isObject(x) {
return typeof x === "object" && x !== null;
};