1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-07 02:10:03 +00:00
bramw_baserow/web-frontend/modules/core/functionCollection.js

12 lines
304 B
JavaScript

import { FunctionCollection } from '@baserow/formula/parser/javascriptExecutor'
export class RuntimeFunctionCollection extends FunctionCollection {
constructor($registry) {
super()
this.$registry = $registry
}
get(name) {
return this.$registry.get('runtime_formula_type', name)
}
}