mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
8 lines
270 B
JavaScript
Vendored
8 lines
270 B
JavaScript
Vendored
var test = require('tape')
|
|
var bufferIndexOf = require('../')
|
|
|
|
test("doesnt skip partial matches",function(t){
|
|
//'aaaba'.indexOf('aaba') // --> 1
|
|
t.equals(bufferIndexOf(new Buffer('aaaba'), new Buffer('aaba')),1,'partial matches should not be skipped')
|
|
t.end()
|
|
})
|