odin-js-fundamentals-part-5/node_modules/object.groupby/test/index.js

13 lines
181 B
JavaScript

'use strict';
var test = require('tape');
var index = require('../');
var runTests = require('./tests');
test('as a function', function (t) {
runTests(index, t);
t.end();
});