mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
20 lines
536 B
JavaScript
20 lines
536 B
JavaScript
|
// TODO: This file was created by bulk-decaffeinate.
|
||
|
// Sanity-check the conversion and remove this comment.
|
||
|
/*
|
||
|
* decaffeinate suggestions:
|
||
|
* DS101: Remove unnecessary use of Array.from
|
||
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
||
|
*/
|
||
|
const Settings = require('settings-sharelatex')
|
||
|
|
||
|
module.exports = {
|
||
|
findLocalPlanInSettings(planCode) {
|
||
|
for (let plan of Array.from(Settings.plans)) {
|
||
|
if (plan.planCode === planCode) {
|
||
|
return plan
|
||
|
}
|
||
|
}
|
||
|
return null
|
||
|
}
|
||
|
}
|