Is there away to import external JS libraries such as CryptoJS for use in Electroneek bots?
1 Like
@clementine 1. No, ElectroNeek does not allow to add any libraries manually. But we have three libraries connected: lodash
, moment
and mustache
. In the code, they can be called through keywords _
, moment
, and mustache
respectively. For example, _.has()
, moment().add()
, mustache.render()
.
2 Likes