/
asias
/
new
Обзор
Документация
Войти
/
asias
/
new
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/es-iterator-helpers/test/implementation.js
18 строк
362 B
AnastasyaDemina
project
07 дек 2025, 23:03
07 дек 2025, 23:03
7c21e25
Код
Авторство
О чём код?
'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(); } });