minified webix files

Hi ,
What is the compression technique used for generating the minified files for webix. The compression seems to be renaming the names of the functions that could cause problems if we extend the methods and add reference to internal functions

It is expected. Names started from “_” are private, and private methods must not be called directly.

If you really need to use private methods, you can use webix_debug.js and UglifyJS or some other js compression tool to have a smaller file for production.

Hi Maksim,
Thanks.

Hi ,
If I want to remove the assertions and debug statements as part of the minification process , outside of manually removing these methods,
How would I go about achieving this.

It possible to configure uglifyJS to remove specified function calls during data export.

Thank You.