UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

20 lines (15 loc) 282 B
/*! * @techmely/utils * Copyright(c) 2021-2024 Techmely <techmely.creation@gmail.com> * MIT Licensed */ import { globProcess } from "./chunk-JR6SYPCS.mjs"; // src/isLinux.ts function isLinux() { return /^linux/i.test(globProcess.platform || ""); } export { isLinux };