Files
ETB/ETB-FrontEnd/node_modules/object.groupby/test/index.js
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

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();
});