Global helper functions?

I have quite a lot of funtions that I need to use multiple times and at many places. So how to create a ‘global function’ that can be called in any component, I don’t want to use mixin tho… Thank you.

I’d suggest just importing them:

import myHelper from '/imports/helpers/myHelper';

// use myHelper
2 Likes