• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Short Name: rJSmin
2URL: http://opensource.perlig.de/rjsmin/
3Version: 1.0.12
4License: Apache 2.0
5License File: NOT_SHIPPED
6Security Critical: no
7
8Description:
9rJSmin is a javascript minifier written in python.
10The minifier is based on the semantics of jsmin.c by Douglas Crockford.
11The 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.
12
13Modifications made:
14 - Removed the bench.sh since the file doesn't have the licensing info and
15   caused license checker to fail.
16 - Added a small hack to not clobber template strings. (Not a complete solution
17   since it won't handle nesting. E.g. `${'`'} foo` would probably cause
18   problems).
19