1.0.2 • Published 4 years ago

is-uglified v1.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

is-uglified

Detect if a javascript file is uglified

How?

We use Mean Identify Length measure. For one handwriting javascript file, the average length of identifiers MUST bigger than it of an uglified one.

E.g.,

We set the threshold value default to 3, detecting whether a javascript file is uglified.

Installing

npm install is-uglified

Usage

import isUglified from 'is-uglified';

isUglified('local_file_to_detect.js') // get result;