/
drndsv
/
react
Обзор
Документация
Войти
/
drndsv
/
react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/es-iterator-helpers/test/implementation.js
18 строк
362 B
drndsv
Initial commit
14 апр 2025, 22:53
14 апр 2025, 22:53
641ac8a
Код
Авторство
О чём код?
'use strict'; var test = require('tape'); var forEach = require('for-each'); var shims = require('../'); forEach(shims, function (shim) { var shimTests; try { shimTests = require('./' + shim); // eslint-disable-line global-require } catch (e) { test(shim + ': implementation', { todo: true }); } if (shimTests) { shimTests.implementation(); } });