1 Star 0 Fork 0

animalcoder/Vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.js 689 Bytes
一键复制 编辑 原始数据 按行查看 历史
animalcoder 提交于 2020-03-23 09:59 +08:00 . Vue6
var tape = require('tape')
var indexes = require('./')
tape('indexes of - 2 matches', function (t) {
var x = indexes([1,2,3, 2,4,5,9,8,0], 2)
t.deepEqual(x, [1,3])
t.end()
})
tape('indexes of - 1 match', function (t) {
var x = indexes([1,2,3, 2,4,5,9,8,0], 2)
t.deepEqual(x, [1,3])
t.end()
})
tape('indexes of - empty', function (t) {
var x = indexes([1,2,3, 2,4,5,9,8,0], 24)
t.deepEqual(x, [])
t.end()
})
tape('indexes of - empty', function (t) {
var x = indexes([8,8,8,8,8,8,8], 8)
t.deepEqual(x, [0,1,2,3,4,5,6])
t.end()
})
tape('indexes of - string', function (t) {
var x = indexes('foo bar baz foo', 'foo')
t.deepEqual(x, [0, 12])
t.end()
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/animalcoder/Vue.git
git@gitee.com:animalcoder/Vue.git
animalcoder
Vue
Vue
master

搜索帮助