ut-tools
Version:
Build and Release management automation package.
11 lines • 439 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isJsonPrimitive = void 0;
function isJsonPrimitive(maybeJsonPrimitive) {
return (maybeJsonPrimitive === null ||
typeof maybeJsonPrimitive === 'number' ||
typeof maybeJsonPrimitive === 'string' ||
typeof maybeJsonPrimitive === 'boolean');
}
exports.isJsonPrimitive = isJsonPrimitive;
//# sourceMappingURL=isJsonPrimitive.js.map