1.0.3 • Published 1 year ago

nv-jast-compress-attr-hash v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

nv-jast-compress-attr-hash

install

  • npm install nv-jast-compress-attr-hash

splitted

usage

  const {decd,encd}   = require("nv-jast-compress-attr-hash");

example

            var d =   {
                abstract: true,
                access: 'public',
                accessibility: 'public',
                async: true,
                computed: true,
                generator: true,
                kind: 'set',
                override: true,
                static: true
            }

            var s = encd(d)
            // '0043013f023f04430643114317411b432243'

            decd(s)
            /*
            {
              abstract: true,
              access: 'public',
              accessibility: 'public',
              async: true,
              computed: true,
              generator: true,
              kind: 'set',
              override: true,
              static: true
            }
            */

METHODS

APIS

LICENSE

  • ISC
1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago