10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
import { getJsHelperList } from "@budibase/string-templates/src/helpers/list"
|
|
|
|
export default {
|
|
...getJsHelperList(),
|
|
// pointing stripProtocol to a unexisting function to be able to declare it on isolated-vm
|
|
// @ts-ignore
|
|
// eslint-disable-next-line no-undef
|
|
stripProtocol: helpersStripProtocol,
|
|
}
|