JSPM

crc32-java

0.0.3
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 23
    • Score
      100M100P100Q60480F
    • License ISC

    This is an implement from "java java.util.zip.CRC32"

    Package Exports

    • crc32-java

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (crc32-java) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    introduction

    This is an implement from "java java.util.zip.CRC32"

    usage

    var CRC32 = require("crc32-java");
    var crc32 = new CRC32();
    crc32.update1(new Buffer("test1"),0,5)
    console.info(crc32.getValue());