Name: js-handler/node_modules/nodeunit/node_modules/tap/node_modules/buffer-equal/package.json
| 1: | { |
| 2: | "name": "buffer-equal", |
| 3: | "description": "return whether two buffers are equal", |
| 4: | "version": "0.0.0", |
| 5: | "repository": { |
| 6: | "type": "git", |
| 7: | "url": "git://github.com/substack/node-buffer-equal.git" |
| 8: | }, |
| 9: | "main": "index.js", |
| 10: | "keywords": [ |
| 11: | "buffer", |
| 12: | "equal" |
| 13: | ], |
| 14: | "directories": { |
| 15: | "example": "example", |
| 16: | "test": "test" |
| 17: | }, |
| 18: | "scripts": { |
| 19: | "test": "tap test/*.js" |
| 20: | }, |
| 21: | "devDependencies": { |
| 22: | "tap": "~0.2.4" |
| 23: | }, |
| 24: | "engines": { |
| 25: | "node": ">=0.4.0" |
| 26: | }, |
| 27: | "license": "MIT", |
| 28: | "author": { |
| 29: | "name": "James Halliday", |
| 30: | "email": "[email protected]", |
| 31: | "url": "http://substack.net" |
| 32: | }, |
| 33: | "readme": "buffer-equal\n============\n\nReturn whether two buffers are equal.\n\n[](http://travis-ci.org/substack/node-buffer-equal)\n\nexample\n=======\n\n``` js\nvar bufferEqual = require('bufferEqual');\n\nconsole.dir(bufferEqual(\n new Buffer([253,254,255]),\n new Buffer([253,254,255])\n));\nconsole.dir(bufferEqual(\n new Buffer('abc'),\n new Buffer('abcd')\n));\nconsole.dir(bufferEqual(\n new Buffer('abc'),\n 'abc'\n));\n```\n\noutput:\n\n```\ntrue\nfalse\nundefined\n```\n\nmethods\n=======\n\n``` js\nvar bufferEqual = require('buffer-equal')\n```\n\nbufferEqual(a, b)\n-----------------\n\nReturn whether the two buffers `a` and `b` are equal.\n\nIf `a` or `b` is not a buffer, return `undefined`.\n\ninstall\n=======\n\nWith [npm](http://npmjs.org) do:\n\n```\nnpm install buffer-equal\n```\n\nlicense\n=======\n\nMIT\n", |
| 34: | "readmeFilename": "README.markdown", |
| 35: | "bugs": { |
| 36: | "url": "https://github.com/substack/node-buffer-equal/issues" |
| 37: | }, |
| 38: | "_id": "[email protected]", |
| 39: | "dist": { |
| 40: | "shasum": "503a972bae0534256f3d0ab85d49f4ee26099629" |
| 41: | }, |
| 42: | "_from": "[email protected]~0.0.0", |
| 43: | "_resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.0.tgz" |
| 44: | } |
