Sha256: 19bdf0c118dcc677e5cb673d3c7670c90f11c83c4ad63ac8ea754a7048fe172d

Contents?: true

Size: 987 Bytes

Versions: 33

Compression:

Stored size: 987 Bytes

Contents

var test = require('tape');
var bindexOf = require('../');

test("can haz working",function(t){


  var newLineBuffer = new Buffer("\n");

  var b = new Buffer("hi\nho\nsilver");

  t.equals(bindexOf(new Buffer('a'), new Buffer('abc')), -1, 'should not match')


  t.equals(bindexOf(new Buffer('aaa'), new Buffer('aa'), 2), -1, 'should not match with 2 offset')
  t.equals(bindexOf(new Buffer('aaa'), new Buffer('aa')), 0, 'should match')

  t.equals(bindexOf(b,newLineBuffer),2,'should find newlines');

  // you can also start from index

  t.equals(bindexOf(b,newLineBuffer,3),5,"should find newlines after offset");

  // no match === -1

  t.equals(bindexOf(b,newLineBuffer,6),-1,"should not find newlines where none are.");


  t.end();
})


test("can handle overlapping matches",function(t){
  console.log(1,'aaaba'.indexOf('aaba'))
  console.log(2,bindexOf(new Buffer('aaaba'), new Buffer('aaba')))
  console.log(3,(new Buffer('aaaba')).indexOf(new Buffer('aaba')))
  t.end()
})

Version data entries

33 entries across 32 versions & 11 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/buffer-indexof/test/test.js
disco_app-0.18.0 test/dummy/node_modules/buffer-indexof/test/test.js
disco_app-0.18.2 test/dummy/node_modules/buffer-indexof/test/test.js
disco_app-0.16.1 test/dummy/node_modules/buffer-indexof/test/test.js
disco_app-0.15.2 test/dummy/node_modules/buffer-indexof/test/test.js
disco_app-0.18.4 test/dummy/node_modules/buffer-indexof/test/test.js
disco_app-0.18.1 test/dummy/node_modules/buffer-indexof/test/test.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/buffer-indexof/test/test.js
disco_app-0.14.0 test/dummy/node_modules/buffer-indexof/test/test.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/buffer-indexof/test/test.js
tang-0.2.1 spec/tang_app/node_modules/buffer-indexof/test/test.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/buffer-indexof/test/test.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/buffer-indexof/test/test.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/buffer-indexof/test/test.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/buffer-indexof/test/test.js
tang-0.2.0 spec/tang_app/node_modules/buffer-indexof/test/test.js
tang-0.1.0 spec/tang_app/node_modules/buffer-indexof/test/test.js
tang-0.0.9 spec/tang_app/node_modules/buffer-indexof/test/test.js
enju_library-0.3.8 spec/dummy/node_modules/buffer-indexof/test/test.js
ilog-0.4.1 node_modules/buffer-indexof/test/test.js