js_packer 0.0.6 copy "js_packer: ^0.0.6" to clipboard
js_packer: ^0.0.6 copied to clipboard

Dart Package for decode Dean Edwards' JavaScript Packer.

js_packer #

pub package Last Commits GitHub repo size License
Uploaded By

Decoder for Dean Edwards' JavaScript Packer

Usage #

First call JSPacker() with your JS value

JSPacker jsPacker = JSPacker(eval); // add your eval js code

Use detect class to check your JS value format is correct

jsPacker.detect()

Use unpack class to get value

jsPacker.unpack()

Example #


JSPacker jsPacker = JSPacker(eval); // add your value

if (jsPacker.detect()) {
    print(jsPacker.unpack());
} else {
    print("Not P.A.C.K.E.R. coded");
}
2
likes
160
points
340
downloads

Publisher

unverified uploader

Weekly Downloads

Dart Package for decode Dean Edwards' JavaScript Packer.

Repository (GitHub)

Topics

#dean #edwards #javascript #packer

Documentation

API reference

Funding

Consider supporting this project:

paypal.me
ko-fi.com

License

MIT (license)

More

Packages that depend on js_packer