mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-22 18:36:09 -07:00
6 lines
103 B
JavaScript
6 lines
103 B
JavaScript
|
"use strict";
|
||
|
|
||
|
module.exports = function isObject(x) {
|
||
|
return typeof x === "object" && x !== null;
|
||
|
};
|