mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
32 lines
653 B
JavaScript
32 lines
653 B
JavaScript
|
/* eslint-disable
|
||
|
max-len,
|
||
|
*/
|
||
|
// TODO: This file was created by bulk-decaffeinate.
|
||
|
// Fix any style issues and re-enable lint.
|
||
|
/*
|
||
|
* decaffeinate suggestions:
|
||
|
* DS102: Remove unnecessary code created because of implicit returns
|
||
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
||
|
*/
|
||
|
const extensionsToProxy = [
|
||
|
'.png',
|
||
|
'.xml',
|
||
|
'.jpeg',
|
||
|
'.json',
|
||
|
'.zip',
|
||
|
'.eps',
|
||
|
'.gif',
|
||
|
'.jpg'
|
||
|
]
|
||
|
const _ = require('underscore')
|
||
|
|
||
|
module.exports = {
|
||
|
shouldProxy(url) {
|
||
|
const shouldProxy = _.find(
|
||
|
extensionsToProxy,
|
||
|
extension => url.indexOf(extension) !== -1
|
||
|
)
|
||
|
return shouldProxy
|
||
|
}
|
||
|
}
|