corde
Version:
A simple library for Discord bot tests
18 lines (14 loc) • 346 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true,
});
exports.isPrimitiveValue = void 0;
function isPrimitiveValue(value) {
return (
typeof value === "number" ||
typeof value === "string" ||
typeof value === "boolean" ||
typeof value === "bigint"
);
}
exports.isPrimitiveValue = isPrimitiveValue;