13
0
Fork 0
mirror of https://github.com/goreleaser/goreleaser-action.git synced 2026-07-04 12:09:35 +00:00
goreleaser-action/node_modules/is-object/index.js
2019-09-20 22:23:46 +02:00

5 lines
103 B
JavaScript

"use strict";
module.exports = function isObject(x) {
return typeof x === "object" && x !== null;
};