@drewsonne/maya-dates
Version:
Typescript package to manipulate dates in the Maya Calendar
12 lines • 405 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isStringPrimitive = exports.isNumberPrimitive = void 0;
function isNumberPrimitive(x) {
return typeof x === "number";
}
exports.isNumberPrimitive = isNumberPrimitive;
function isStringPrimitive(x) {
return typeof x === "string";
}
exports.isStringPrimitive = isStringPrimitive;
//# sourceMappingURL=guards.js.map