SafetyScreen-ui/node_modules/object-is/test/index.js

13 lines
181 B
JavaScript
Raw Normal View History

2025-03-29 19:33:58 +08:00
'use strict';
var index = require('../');
var test = require('tape');
var runTests = require('./tests');
test('as a function', function (t) {
runTests(index, t);
t.end();
});