overleaf/services/web/app/src/Features/StaticPages/StaticPageHelpers.js
Alasdair Smith 0ca81de78c Merge pull request #1717 from overleaf/as-decaffeinate-backend
Decaffeinate backend

GitOrigin-RevId: 4ca9f94fc809cab6f47cec8254cacaf1bb3806fa
2019-05-29 09:32:21 +00:00

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
}
}