Skip to content

Commit

Permalink
make vendor shim comply with linting
Browse files Browse the repository at this point in the history
  • Loading branch information
juwara0 committed Jan 25, 2018
1 parent 63b124e commit 42a7bfb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions vendor/shims/ua-parser-js.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/* eslint-env node:true */
/* globals define, self */

(function() {
function vendorModule() {
'use strict';
(function () {
function vendorModule () {
'use strict'

return {
'default': self['UAParser'],
__esModule: true,
};
__esModule: true
}
}

define('ua-parser-js', [], vendorModule);
})();
define('ua-parser-js', [], vendorModule)
})()

0 comments on commit 42a7bfb

Please sign in to comment.