%PDF- %PDF-
Direktori : /var/www/html/node_modules/object.hasown/test/ |
Current File : /var/www/html/node_modules/object.hasown/test/index.mjs |
import parseInt, * as parseIntModule from 'object.hasown'; import test from 'tape'; import runTests from './tests.js'; test('as a function', (t) => { runTests(parseInt, t); t.end(); }); test('named exports', async (t) => { t.deepEqual( Object.keys(parseIntModule).sort(), ['default', 'shim', 'getPolyfill', 'implementation'].sort(), 'has expected named exports', ); const { shim, getPolyfill, implementation } = parseIntModule; t.equal((await import('object.hasown/shim')).default, shim, 'shim named export matches deep export'); t.equal((await import('object.hasown/implementation')).default, implementation, 'implementation named export matches deep export'); t.equal((await import('object.hasown/polyfill')).default, getPolyfill, 'getPolyfill named export matches deep export'); t.end(); });