botbook/node_modules/update-notifier/index.js

8 lines
206 B
JavaScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
import UpdateNotifier from './update-notifier.js';
export default function updateNotifier(options) {
const updateNotifier = new UpdateNotifier(options);
updateNotifier.check();
return updateNotifier;
}