HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/ubuntu/.npm/registry.npmjs.org/delegates/.cache.json
{"_id":"delegates","_rev":"43-c3a17c147399919d1c0a6e45f381f75d","name":"delegates","description":"delegate methods and accessors to another property","dist-tags":{"latest":"1.0.0"},"versions":{"0.0.1":{"name":"delegates","version":"0.0.1","repository":{"type":"git","url":"git://github.com/visionmedia/node-delegates"},"description":"delegate methods and accessors to another property","keywords":["delegate","delegation"],"dependencies":{},"devDependencies":{"mocha":"*","should":"*"},"license":"MIT","bugs":{"url":"https://github.com/visionmedia/node-delegates/issues"},"homepage":"https://github.com/visionmedia/node-delegates","_id":"[email protected]","dist":{"shasum":"1eb6a8edba66674486234422899fed659eb5bd4c","tarball":"https://registry.npmjs.org/delegates/-/delegates-0.0.1.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"tjholowaychuk","email":"[email protected]"},"maintainers":[{"name":"tjholowaychuk","email":"[email protected]"}],"directories":{}},"0.0.2":{"name":"delegates","version":"0.0.2","repository":{"type":"git","url":"git://github.com/visionmedia/node-delegates"},"description":"delegate methods and accessors to another property","keywords":["delegate","delegation"],"dependencies":{},"devDependencies":{"mocha":"*","should":"*"},"license":"MIT","bugs":{"url":"https://github.com/visionmedia/node-delegates/issues"},"homepage":"https://github.com/visionmedia/node-delegates","_id":"[email protected]","dist":{"shasum":"41c8b770dcfff0a65c32192cac022dc037076d77","tarball":"https://registry.npmjs.org/delegates/-/delegates-0.0.2.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"tjholowaychuk","email":"[email protected]"},"maintainers":[{"name":"tjholowaychuk","email":"[email protected]"}],"directories":{}},"0.0.3":{"name":"delegates","version":"0.0.3","repository":{"type":"git","url":"git://github.com/visionmedia/node-delegates"},"description":"delegate methods and accessors to another property","keywords":["delegate","delegation"],"dependencies":{},"devDependencies":{"mocha":"*","should":"*"},"license":"MIT","bugs":{"url":"https://github.com/visionmedia/node-delegates/issues"},"homepage":"https://github.com/visionmedia/node-delegates","_id":"[email protected]","dist":{"shasum":"4f25cbf8e1c061967f834e003f3bd18ded4baeea","tarball":"https://registry.npmjs.org/delegates/-/delegates-0.0.3.tgz"},"_from":".","_npmVersion":"1.3.15","_npmUser":{"name":"tjholowaychuk","email":"[email protected]"},"maintainers":[{"name":"tjholowaychuk","email":"[email protected]"}],"directories":{}},"0.1.0":{"name":"delegates","version":"0.1.0","repository":{"type":"git","url":"git://github.com/visionmedia/node-delegates"},"description":"delegate methods and accessors to another property","keywords":["delegate","delegation"],"dependencies":{},"devDependencies":{"mocha":"*","should":"*"},"license":"MIT","bugs":{"url":"https://github.com/visionmedia/node-delegates/issues"},"homepage":"https://github.com/visionmedia/node-delegates","_id":"[email protected]","_shasum":"b4b57be11a1653517a04b27f0949bdc327dfe390","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"dominicbarnes","email":"[email protected]"},"maintainers":[{"name":"tjholowaychuk","email":"[email protected]"},{"name":"dominicbarnes","email":"[email protected]"}],"dist":{"shasum":"b4b57be11a1653517a04b27f0949bdc327dfe390","tarball":"https://registry.npmjs.org/delegates/-/delegates-0.1.0.tgz"},"directories":{}},"1.0.0":{"name":"delegates","version":"1.0.0","repository":{"type":"git","url":"git+https://github.com/visionmedia/node-delegates.git"},"description":"delegate methods and accessors to another property","keywords":["delegate","delegation"],"dependencies":{},"devDependencies":{"mocha":"*","should":"*"},"license":"MIT","gitHead":"c4dc07ef1ed51c2b2a63f3585e5ef949ee577a49","bugs":{"url":"https://github.com/visionmedia/node-delegates/issues"},"homepage":"https://github.com/visionmedia/node-delegates#readme","_id":"[email protected]","scripts":{},"_shasum":"84c6e159b81904fdca59a0ef44cd870d31250f9a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"4.2.1","_npmUser":{"name":"tjholowaychuk","email":"[email protected]"},"maintainers":[{"name":"tjholowaychuk","email":"[email protected]"},{"name":"dominicbarnes","email":"[email protected]"}],"dist":{"shasum":"84c6e159b81904fdca59a0ef44cd870d31250f9a","tarball":"https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz"},"directories":{}}},"readme":"\n# delegates\n\n  Node method and accessor delegation utilty.\n\n## Installation\n\n```\n$ npm install delegates\n```\n\n## Example\n\n```js\nvar delegate = require('delegates');\n\n...\n\ndelegate(proto, 'request')\n  .method('acceptsLanguages')\n  .method('acceptsEncodings')\n  .method('acceptsCharsets')\n  .method('accepts')\n  .method('is')\n  .access('querystring')\n  .access('idempotent')\n  .access('socket')\n  .access('length')\n  .access('query')\n  .access('search')\n  .access('status')\n  .access('method')\n  .access('path')\n  .access('body')\n  .access('host')\n  .access('url')\n  .getter('subdomains')\n  .getter('protocol')\n  .getter('header')\n  .getter('stale')\n  .getter('fresh')\n  .getter('secure')\n  .getter('ips')\n  .getter('ip')\n```\n\n# API\n\n## Delegate(proto, prop)\n\nCreates a delegator instance used to configure using the `prop` on the given\n`proto` object. (which is usually a prototype)\n\n## Delegate#method(name)\n\nAllows the given method `name` to be accessed on the host.\n\n## Delegate#getter(name)\n\nCreates a \"getter\" for the property with the given `name` on the delegated\nobject.\n\n## Delegate#setter(name)\n\nCreates a \"setter\" for the property with the given `name` on the delegated\nobject.\n\n## Delegate#access(name)\n\nCreates an \"accessor\" (ie: both getter *and* setter) for the property with the\ngiven `name` on the delegated object.\n\n## Delegate#fluent(name)\n\nA unique type of \"accessor\" that works for a \"fluent\" API. When called as a\ngetter, the method returns the expected value. However, if the method is called\nwith a value, it will return itself so it can be chained. For example:\n\n```js\ndelegate(proto, 'request')\n  .fluent('query')\n\n// getter\nvar q = request.query();\n\n// setter (chainable)\nrequest\n  .query({ a: 1 })\n  .query({ b: 2 });\n```\n\n# License\n\n  MIT\n","maintainers":[{"name":"tjholowaychuk","email":"[email protected]"},{"name":"dominicbarnes","email":"[email protected]"}],"time":{"modified":"2018-08-03T00:38:17.407Z","created":"2014-01-13T14:22:03.294Z","0.0.1":"2014-01-13T14:22:04.168Z","0.0.2":"2014-01-13T14:31:47.744Z","0.0.3":"2014-01-13T14:34:41.995Z","0.1.0":"2014-10-17T22:35:53.914Z","1.0.0":"2015-12-14T19:56:09.247Z"},"repository":{"type":"git","url":"git+https://github.com/visionmedia/node-delegates.git"},"users":{"jksdua":true,"goodseller":true,"highflying":true,"xieranmaya":true,"surfacew":true,"attomos":true,"progmer":true,"corenova":true,"yokubee":true,"kodekracker":true,"leonzhao":true,"suddi":true,"wangnan0610":true,"programmer.severson":true,"danielpavelic":true,"laomu":true,"xtx1130":true,"shuoshubao":true,"tiancheng9":true,"sballan":true,"x-cold":true,"tedyhy":true,"coolhector":true,"bhaskarmelkani":true,"pasturn":true,"jream":true},"homepage":"https://github.com/visionmedia/node-delegates#readme","keywords":["delegate","delegation"],"bugs":{"url":"https://github.com/visionmedia/node-delegates/issues"},"license":"MIT","readmeFilename":"Readme.md","_attachments":{},"_etag":"W/\"24df92accbccf36cbb433af9f7ff1919\"","_lastModified":"Fri, 03 Aug 2018 00:38:18 GMT"}