astro-ghostcms/.pnpm-store/v3/files/5b/eec187d2a4a8efef903e4221d0f...

14 lines
268 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
var callBind = require('call-bind');
var test = require('tape');
var implementation = require('../implementation');
var runTests = require('./tests');
test('as a function', function (t) {
runTests(callBind(implementation, Object), t);
t.end();
});