botbook/node_modules/update-notifier/index.js
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

7 lines
206 B
JavaScript

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