mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0ca81de78c
Decaffeinate backend GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
31 lines
653 B
JavaScript
31 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
|
|
}
|
|
}
|