Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

multibyteneedle.js 404B

123456789101112131415
  1. var test = require('tape')
  2. var bindexof = require('../')
  3. test("can find mutibyte needles",function(t){
  4. t.equals(bindexof(new Buffer("hi"),new Buffer("hi")),0,'should find multibyte needle when its the whole buffer')
  5. // https://github.com/soldair/node-buffer-indexof/issues/2
  6. t.equals(bindexof(new Buffer("aaba"), new Buffer("ab")),1,'should find multibyte needle in haystack')
  7. t.end();
  8. })