mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
remove unused exceljs from client bundle
This commit is contained in:
parent
838c74a83b
commit
3aa7a6e244
6 changed files with 1280 additions and 1250 deletions
8
models/runOnServer.js
Normal file
8
models/runOnServer.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
* Executes a function only if we are on the server. Use in combination
|
||||
* with package-sepcific loader functions to create a "nested" import that
|
||||
* prevents leakage of server-dependencies to the client.
|
||||
* @param fct {function} the function to be executed on the server
|
||||
* @return {*} a return value from the function, if there is any
|
||||
*/
|
||||
export const runOnServer = fct => Meteor.isServer && fct();
|
||||
Loading…
Add table
Add a link
Reference in a new issue