securityos/node_modules/object.groupby/test/index.js

13 lines
181 B
JavaScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
'use strict';
var test = require('tape');
var index = require('../');
var runTests = require('./tests');
test('as a function', function (t) {
runTests(index, t);
t.end();
});