UNPKG

203 BJavaScriptView Raw
1const tap = require('tap');
2const isArray = require('lodash.isarray');
3
4tap.test('isArray', function cb(t) {
5 t.plan(1);
6 t.equal(isArray({}), false);
7 // call t.end() when you're done
8 t.end();
9});