Files
Foundry-VTT-Docker/resources/app/node_modules/async/internal/withoutIndex.js

10 lines
251 B
JavaScript
Raw Normal View History

2025-01-04 00:34:03 +01:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = _withoutIndex;
function _withoutIndex(iteratee) {
return (value, index, callback) => iteratee(value, callback);
}
module.exports = exports.default;