.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / browserslist / browser.js
1 var BrowserslistError = require('./error')
2
3 function noop () { }
4
5 module.exports = {
6   loadQueries: function loadQueries () {
7     throw new BrowserslistError(
8       'Sharable configs are not supported in client-side build of Browserslist')
9   },
10
11   getStat: function getStat (opts) {
12     return opts.stats
13   },
14
15   loadConfig: function loadConfig (opts) {
16     if (opts.config) {
17       throw new BrowserslistError(
18         'Browserslist config are not supported in client-side build')
19     }
20   },
21
22   parseConfig: noop,
23
24   readConfig: noop,
25
26   findConfig: noop,
27
28   clearCaches: noop
29 }