mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
/**
|
|
* Gets the minimum package age in hours from environment variable
|
|
* @returns {string | undefined}
|
|
*/
|
|
export function getMinimumPackageAgeHours() {
|
|
return process.env.SAFE_CHAIN_MINIMUM_PACKAGE_AGE_HOURS;
|
|
}
|