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