{
  "_args": [
    [
      {
        "raw": "buffer-fill@^1.0.0",
        "scope": null,
        "escapedName": "buffer-fill",
        "name": "buffer-fill",
        "rawSpec": "^1.0.0",
        "spec": ">=1.0.0 <2.0.0",
        "type": "range"
      },
      "/home/zkochan/src/pnpm/packages/pnpm/node_modules/buffer-alloc"
    ]
  ],
  "_from": "buffer-fill@>=1.0.0 <2.0.0",
  "_id": "buffer-fill@1.0.0",
  "_inCache": true,
  "_location": "/buffer-fill",
  "_nodeVersion": "7.0.0",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/buffer-fill_1.0.0_1527636952747_0.20799370179837218"
  },
  "_npmUser": {
    "name": "linusu",
    "email": "linus@folkdatorn.se"
  },
  "_npmVersion": "3.10.8",
  "_phantomChildren": {},
  "_requested": {
    "raw": "buffer-fill@^1.0.0",
    "scope": null,
    "escapedName": "buffer-fill",
    "name": "buffer-fill",
    "rawSpec": "^1.0.0",
    "spec": ">=1.0.0 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/buffer-alloc"
  ],
  "_resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
  "_shasum": "f8f78b76789888ef39f205cd637f68e702122b2c",
  "_shrinkwrap": null,
  "_spec": "buffer-fill@^1.0.0",
  "_where": "/home/zkochan/src/pnpm/packages/pnpm/node_modules/buffer-alloc",
  "bugs": {
    "url": "https://github.com/LinusU/buffer-fill/issues"
  },
  "dependencies": {},
  "description": "A [ponyfill](https://ponyfill.com) for `Buffer.fill`.",
  "devDependencies": {
    "buffer-alloc-unsafe": "^1.1.0",
    "standard": "^7.1.2"
  },
  "directories": {},
  "dist": {
    "shasum": "f8f78b76789888ef39f205cd637f68e702122b2c",
    "tarball": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz",
    "fileCount": 3,
    "unpackedSize": 4390,
    "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDePZCRA9TVsSAnZWagAA6jAP/ilxGieW8Z7iZZjhfbLR\nhL+yhqdi5m0aSPzY4O7eb6e+Dd3/4fO8FxTcjQCpzie/n8Yo3uzY/RK0fN33\nDPh4kxNlHwrMhpBNuGG2RkKh114r1HkD+vVaWzZb+NFn523hv3OqDR7DOhHN\n7Zq9Y5QfHGma4dQRgfUvHFx0z6PRolCCB+3oGuSB8ER9VXMa6cOwr6whmccu\nwZzyVlpWEHCYekXGyrLtFRrIUezBDVitvz9QDMBn5feVh/tSsD42E/nUDaCW\njcm/TdvHssGyd1ZP6zGjgjvdMVBJgFsS8g9IJ/Vjojyd1KM3B5FI9bo4ChYt\nsL9FXZkcjVbsdGpnmXKVb2yHa9Bq/fPNRpi6zmLeKrsksLbkWMu8YU2U+sZ0\nBwIa/jCF9A1bMrrXgsPtgGQRQoVIL/MWRPtTgVlxupmAavZQJki4nKvQHF6H\nfCHDUTg3bBZgYXqPa+SBY7tqnw6b6CUioe2cZds96TXgZ+y+u28jj3+6j3ER\n+PBp/XMbTjUc8EVWEZEkNq4Hh9K4GhNGoM8CEKFtU6qmwLykrbB9JUskpNGk\naX/Tbx1MHxMU9o+uZ4AbIMmSTh097t6+Igx0HSQektms3mmtsAGx83oOLGd3\nK5Vil/u8V5//McTdf38G3kYlupClQQplYsSgvDxlU/Qg2rw8YJfDREXdAZI8\nnT2Y\r\n=hmqw\r\n-----END PGP SIGNATURE-----\r\n"
  },
  "files": [
    "index.js"
  ],
  "gitHead": "a2badd1de771c99285e385dccdebd63093f0285a",
  "homepage": "https://github.com/LinusU/buffer-fill#readme",
  "license": "MIT",
  "maintainers": [
    {
      "name": "linusu",
      "email": "linus@folkdatorn.se"
    }
  ],
  "name": "buffer-fill",
  "optionalDependencies": {},
  "readme": "# Buffer Fill\n\nA [ponyfill](https://ponyfill.com) for `Buffer.fill`.\n\nWorks as Node.js: `v6.4.0` <br>\nWorks on Node.js: `v0.10.0`\n\n## Installation\n\n```sh\nnpm install --save buffer-fill\n```\n\n## Usage\n\n```js\nconst fill = require('buffer-fill')\nconst buf = Buffer.allocUnsafe(5)\n\nconsole.log(buf.fill(8))\n//=> <Buffer 08 08 08 08 08>\n\nconsole.log(buf.fill(9, 2, 4))\n//=> <Buffer 08 08 09 09 08>\n\nconsole.log(buf.fill('linus', 'latin1'))\n//=> <Buffer 6c 69 6e 75 73>\n\nconsole.log(buf.fill('\\u0222'))\n//=> <Buffer c8 a2 c8 a2 c8>\n```\n\n## API\n\n### fill(buf, value[, offset[, end]][, encoding])\n\n- `value` &lt;String&gt; | &lt;Buffer&gt; | &lt;Integer&gt; The value to fill `buf` with\n- `offset` &lt;Integer&gt; Where to start filling `buf`. **Default:** `0`\n- `end` &lt;Integer&gt; Where to stop filling `buf` (not inclusive). **Default:** `buf.length`\n- `encoding` &lt;String&gt; If `value` is a string, this is its encoding. **Default:** `'utf8'`\n- Return: &lt;Buffer&gt; A reference to `buf`\n\nFills `buf` with the specified `value`. If the `offset` and `end` are not given,\nthe entire `buf` will be filled. This is meant to be a small simplification to\nallow the creation and filling of a `Buffer` to be done on a single line.\n\nIf the final write of a `fill()` operation falls on a multi-byte character, then\nonly the first bytes of that character that fit into `buf` are written.\n\n## See also\n\n- [buffer-alloc-unsafe](https://github.com/LinusU/buffer-alloc-unsafe) A ponyfill for `Buffer.allocUnsafe`\n- [buffer-alloc](https://github.com/LinusU/buffer-alloc) A ponyfill for `Buffer.alloc`\n- [buffer-from](https://github.com/LinusU/buffer-from) A ponyfill for `Buffer.from`\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LinusU/buffer-fill.git"
  },
  "scripts": {
    "test": "standard && node test"
  },
  "version": "1.0.0"
}
