minishouyin/node_modules/rc-select/lib/utils/platformUtil.js

10 lines
234 B
JavaScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isPlatformMac = isPlatformMac;
/* istanbul ignore file */
function isPlatformMac() {
return /(mac\sos|macintosh)/i.test(navigator.appVersion);
}