overleaf/services/web/app/src/Features/Subscription/PlansLocator.js

20 lines
536 B
JavaScript
Raw Normal View History

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