@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
9 lines (8 loc) • 327 B
JavaScript
"use client";
//#region packages/@mantine/core/src/core/utils/primitive/primitive.ts
function isPrimitive(value) {
return typeof value === "string" || typeof value === "number" || typeof value === "boolean" || typeof value === "bigint";
}
//#endregion
exports.isPrimitive = isPrimitive;
//# sourceMappingURL=primitive.cjs.map