{
  "_args": [
    [
      {
        "raw": "js-base64",
        "scope": null,
        "escapedName": "js-base64",
        "name": "js-base64",
        "rawSpec": "",
        "spec": "latest",
        "type": "tag"
      },
      "C:\\xampp\\htdocs\\Cloud-Funnels\\assets\\js"
    ]
  ],
  "_from": "js-base64",
  "_hasShrinkwrap": false,
  "_id": "js-base64@2.5.1",
  "_location": "/js-base64",
  "_nodeVersion": "10.13.0",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/js-base64_2.5.1_1548042450881_0.5502139531377337"
  },
  "_npmUser": {
    "name": "dankogai",
    "email": "dankogai+github@gmail.com"
  },
  "_npmVersion": "6.4.1",
  "_phantomChildren": {},
  "_requested": {
    "raw": "js-base64",
    "scope": null,
    "escapedName": "js-base64",
    "name": "js-base64",
    "rawSpec": "",
    "spec": "latest",
    "type": "tag"
  },
  "_requiredBy": [
    "#USER",
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz",
  "_shasum": "1efa39ef2c5f7980bb1784ade4a8af2de3291121",
  "_shrinkwrap": null,
  "_spec": "js-base64",
  "_where": "C:\\xampp\\htdocs\\Cloud-Funnels\\assets\\js",
  "author": {
    "name": "Dan Kogai"
  },
  "bugs": {
    "url": "https://github.com/dankogai/js-base64/issues"
  },
  "dependencies": {},
  "description": "Yet another Base64 transcoder in pure-JS",
  "devDependencies": {
    "babel-preset-env": "^1.7.0",
    "babel-register": "^6.26.0",
    "mocha": "*"
  },
  "directories": {
    "test": "test"
  },
  "dist": {
    "integrity": "sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==",
    "shasum": "1efa39ef2c5f7980bb1784ade4a8af2de3291121",
    "tarball": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz",
    "fileCount": 23,
    "unpackedSize": 164432,
    "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRUDTCRA9TVsSAnZWagAAup8P/1FzvIv2RJFpf7T3oU/W\n/9M4IBQ4dHGSosIm2xyuPOUiWv9anlrzgtTt/KmyAFIU3BY8Kw6+tZpmiUto\nxdp3+ffnnTyE1RGpWhUzdQBqV9Ybl8EEeP1yd61pwRBJwNf6zFnivFM5iAg1\ngOEwUNvdhU34+Vz9gtAiyLtuyBSDXmAs4lYW+jT5emphm223B4ATU5V74GAU\nLD5Kw5CPhYZPdkqUEQy8tpEVlVoAxfhPXjPqAQsDvCZwI/4b0SwiwavwXMbU\ntLom8Cecao6H982TL+mFcZ78uZYJY7/Hon3AKRQDtz5u6kKcwyZb+6vFn0MH\nHE0bJe1+vl36Ss9Dh15nJlF0TFR1yWvJuCkK+evN266uDTf1BIF+2HaBsidB\nuzhJx+f0CJ7q3cil7dnbRUtN21+4dw+CUDCNY6ZWaFz4vUSbhr6Agii1FQuY\nFLqj4OZDTkgy4COQIt6qvhrENz6e1xdkOP5l9OINYxoahLCP9ykJheJaUyH9\nQI+WyDuf2h4xib41tKJEaD4LlpPQNMTABAD1+IdzTzw/0kvuWSuNIJj0fZ9t\nzrPMtccZTRvBvoDrFYDQQXYh/oir2Elg02ETLI31WMZUWFh+n4EfXB4QiTbp\nohpFPpzju95F5hYWMXaXkCwIzxHOCI1uJs1Nfp/qjLpdCIuCxuQcNtol2fn2\nGWzm\r\n=jO92\r\n-----END PGP SIGNATURE-----\r\n"
  },
  "gitHead": "8bfa436f733bec60c95c720e1d720c28b43ae0b2",
  "homepage": "https://github.com/dankogai/js-base64#readme",
  "keywords": [
    "base64"
  ],
  "license": "BSD-3-Clause",
  "main": "base64.js",
  "maintainers": [
    {
      "name": "dankogai",
      "email": "dankogai+github@gmail.com"
    }
  ],
  "name": "js-base64",
  "optionalDependencies": {},
  "readme": "[![build status](https://secure.travis-ci.org/dankogai/js-base64.png)](http://travis-ci.org/dankogai/js-base64)\n\n# base64.js\n\nYet another Base64 transcoder\n\n## Install\n\n```javascript\n$ npm install --save js-base64\n```\n\nIf you are using it on ES6 transpilers, you may also need:\n\n```javascript\n$ npm install --save babel-preset-env\n```\n\nNote `js-base64` itself is stand-alone so its `package.json` has no `dependencies`.  However, it is also tested on ES6 environment so `\"babel-preset-env\": \"^1.7.0\"` is on `devDependencies`.\n\n\n## Usage\n\n### In Browser\n\n```html\n<script src=\"base64.js\"></script>\n```\n\n### node.js\n\n```javascript\nvar Base64 = require('js-base64').Base64;\n```\n\n## es6+\n\n```javascript\nimport { Base64 } from 'js-base64';\n```\n\n## SYNOPSIS\n\n```javascript\nBase64.encode('dankogai');  // ZGFua29nYWk=\nBase64.encode('小飼弾');    // 5bCP6aO85by+\nBase64.encodeURI('小飼弾'); // 5bCP6aO85by-\n\nBase64.decode('ZGFua29nYWk=');  // dankogai\nBase64.decode('5bCP6aO85by+');  // 小飼弾\n// note .decodeURI() is unnecessary since it accepts both flavors\nBase64.decode('5bCP6aO85by-');  // 小飼弾\n```\n\n### String Extension for ES5\n\n```javascript\nif (Base64.extendString) {\n    // you have to explicitly extend String.prototype\n    Base64.extendString();\n    // once extended, you can do the following\n    'dankogai'.toBase64();       // ZGFua29nYWk=\n    '小飼弾'.toBase64();         // 5bCP6aO85by+\n    '小飼弾'.toBase64(true);     // 5bCP6aO85by-\n    '小飼弾'.toBase64URI();      // 5bCP6aO85by-\n    'ZGFua29nYWk='.fromBase64(); // dankogai\n    '5bCP6aO85by+'.fromBase64(); // 小飼弾\n    '5bCP6aO85by-'.fromBase64(); // 小飼弾\n}\n```\n\n### TypeScript\n\nTypeScript 2.0 type definition was added to the [DefinitelyTyped repository](https://github.com/DefinitelyTyped/DefinitelyTyped).\n\n```bash\n$ npm install --save @types/js-base64\n```\n\n## `.decode()` vs `.atob` (and `.encode()` vs `btoa()`)\n\nSuppose you have:\n\n```\nvar pngBase64 = \n  \"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=\";\n```\n\nWhich is a Base64-encoded 1x1 transparent PNG, **DO NOT USE** `Base64.decode(pngBase64)`.  Use `Base64.atob(pngBase64)` instead.  `Base64.decode()` decodes to UTF-8 string while `Base64.atob()` decodes to bytes, which is compatible to browser built-in `atob()` (Which is absent in node.js).  The same rule applies to the opposite direction.\n\n\n## SEE ALSO\n\n+ http://en.wikipedia.org/wiki/Base64\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/dankogai/js-base64.git"
  },
  "scripts": {
    "test": "mocha --compilers js:babel-register"
  },
  "version": "2.5.1"
}
