UNPKG

i18ntk

Version:

i18n Tool Kit - Zero-dependency internationalization toolkit for setup, scanning, analysis, validation, auto translation, fixing, reporting, and runtime translation loading.

19 lines (14 loc) 430 B
'use strict'; /** * Update checks were intentionally removed to avoid outbound network access * during CLI startup and to reduce scanner noise in restricted environments. * * We keep the same exported API for backwards compatibility. */ async function checkNpmOutdated() { return null; } async function printUpgradeWarningIfOutdated() { return; } module.exports = { checkNpmOutdated, printUpgradeWarningIfOutdated };