UNPKG

@mdui/jq

Version:

拥有和 jQuery 相似 API 的轻量级 JavaScript 工具库

9 lines (8 loc) 284 B
import { $ } from '../$.js'; import { eachArray } from '../shared/helper.js'; // eslint-disable-next-line @typescript-eslint/no-explicit-any $.fn.each = function (callback) { return eachArray(this, (value, index) => { return callback.call(value, index, value); }); };