@techmely/utils
Version:
Collection of helpful JavaScript / TypeScript utils
23 lines (19 loc) • 334 B
JavaScript
/*!
* @techmely/utils
* Copyright(c) 2021-2024 Techmely <techmely.creation@gmail.com>
* MIT Licensed
*/
import {
toBoolean
} from "./chunk-FYOM22JR.mjs";
import {
envShims
} from "./chunk-UIBCAP7L.mjs";
import "./chunk-NYLAFCGV.mjs";
// src/isCI.ts
function isCI() {
return toBoolean(envShims().CI);
}
export {
isCI
};