UNPKG

is-freebsd

Version:

A tool to check if the operating system is FreeBSD or not

10 lines (9 loc) 314 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isFreeBSD = void 0; var isFreeBSD = function () { if (typeof process === 'undefined' || typeof process.platform !== 'string') return false; return process.platform === 'freebsd'; }; exports.isFreeBSD = isFreeBSD;