UNPKG

@mdui/jq

Version:

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

8 lines (7 loc) 228 B
import { $ } from '../$.js'; import { JQ } from '../shared/core.js'; import './slice.js'; $.fn.eq = function (index) { const ret = index === -1 ? this.slice(index) : this.slice(index, +index + 1); return new JQ(ret); };