24.04.2017, 16:18
Hi,
Yes all functions in common functions are available in / loaded into each script,
require('user.xxx') is loading the functions from the user lib only in the script where you call it.
So if you don't need a specific function in most of your scripts you should not put it in 'common' functions.
Basicly common functions is just a user lib that is loaded by default in all your scripts without the need of a require('') command.
BR,
Erwin
Yes all functions in common functions are available in / loaded into each script,
require('user.xxx') is loading the functions from the user lib only in the script where you call it.
So if you don't need a specific function in most of your scripts you should not put it in 'common' functions.
Basicly common functions is just a user lib that is loaded by default in all your scripts without the need of a require('') command.
BR,
Erwin