Home | Trees | Indices | Help |
|
---|
|
rJSmin is a javascript minifier written in python.
The minifier is based on the semantics of jsmin.c by Douglas Crockford.
The module is a re-implementation aiming for speed, so it can be used at runtime (rather than during a preprocessing step). Usually it produces the same results as the original jsmin.c. It differs in the following ways:
Since most parts of the logic are handled by the regex engine it's way faster than the original python port of jsmin.c by Baruch Even. The speed factor varies between about 6 and 55 depending on input and python version (it gets faster the more compressed the input already is). Compared to the speed-refactored python port by Dave St.Germain the performance gain is less dramatic but still between 1.2 and 7. See the docs/BENCHMARKS file for details.
rjsmin.c is a reimplementation of rjsmin.py in C and speeds it up even more.
Both python 2 and python 3 are supported.
Version: 1.0.6
Author: André Malo
License: Apache License, Version 2.0
Functions | |||
str |
|
Function Details |
Minify javascript based on jsmin.c by Douglas Crockford. Instead of parsing the stream char by char, it uses a regular expression approach which minifies the whole script with one big substitution regex.
|
Home | Trees | Indices | Help |
|
---|