UNPKG

206 BJavaScriptView Raw
1import UpdateNotifier from './update-notifier.js';
2
3export default function updateNotifier(options) {
4 const updateNotifier = new UpdateNotifier(options);
5 updateNotifier.check();
6 return updateNotifier;
7}