Files
est-frame/node_modules/update-notifier/index.js
2025-10-22 05:38:27 +00:00

8 lines
206 B
JavaScript
Executable File

import UpdateNotifier from './update-notifier.js';
export default function updateNotifier(options) {
const updateNotifier = new UpdateNotifier(options);
updateNotifier.check();
return updateNotifier;
}