Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,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,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/node_modules/hash-sum/ |
Upload File : |
# hash-sum > blazing fast unique hash generator # install ```shell npm i hash-sum -S ``` # features - no dependencies - minimal footprint - works in all of node.js, io.js, and the browser - hashes functions based on their source code - produces different hashes for different object types - support for circular references in objects - ignores property assignment order # `sum(value)` yields a four-byte hexadecimal hash based off of `value`. ``` # creates unique hashes creates unique hashes 4d237d49 from: [ 0, 1, 2, 3 ] 766ec173 from: { url: 12 } 2f473108 from: { headers: 12 } 23308836 from: { headers: 122 } 062bce44 from: { headers: '122' } acb9f66e from: { headers: { accept: 'text/plain' } } 1c365a2d from: { payload: [ 0, 1, 2, 3 ], headers: [ { a: 'b' } ] } 7319ae9d from: { a: [Function] } 8a3a0e86 from: { b: [Function] } b6d7f5d4 from: { b: [Function] } 6c95fc65 from: function () {} 2941766e from: function (a) {} 294f8def from: function (b) {} 2d9c0cb8 from: function (a) { return a;} ed5c63fc from: function (a) {return a;} bba68bf6 from: '' 2d27667d from: 'null' 774b96ed from: 'false' 2d2a1684 from: 'true' 8daa1a0c from: '0' 8daa1a0a from: '1' e38f07cc from: 'void 0' 6037ea1a from: 'undefined' 9b7df12e from: null 3c206f76 from: false 01e34ba8 from: true 1a96284a from: 0 1a96284b from: 1 29172c1a from: undefined 4505230f from: {} 3718c6e8 from: { a: {}, b: {} } 5d844489 from: [] 938eaaf0 from: Tue Jul 14 2015 15:35:36 GMT-0300 (ART) dfe5fb2e from: global ok 1 should be equal ``` # license MIT