Convert all source files to JavaScript
This commit is contained in:
parent
403870a27e
commit
1f9691ae13
144 changed files with 11211 additions and 7301 deletions
12
atom/browser/api/lib/auto-updater.js
Normal file
12
atom/browser/api/lib/auto-updater.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
var autoUpdater, deprecate;
|
||||
|
||||
deprecate = require('electron').deprecate;
|
||||
|
||||
autoUpdater = process.platform === 'win32' ? require('./auto-updater/auto-updater-win') : require('./auto-updater/auto-updater-native');
|
||||
|
||||
|
||||
/* Deprecated. */
|
||||
|
||||
deprecate.rename(autoUpdater, 'setFeedUrl', 'setFeedURL');
|
||||
|
||||
module.exports = autoUpdater;
|
Loading…
Add table
Add a link
Reference in a new issue