UNPKG
@mdui/jq
Version:
latest (3.0.3)
3.0.3
3.0.2
3.0.1
3.0.0
拥有和 jQuery 相似 API 的轻量级 JavaScript 工具库
github.com/zdhxiong/mdui
zdhxiong/mdui
@mdui/jq
/
methods
/
get.js
8 lines
(7 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ $ }
from
'../$.js'
;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
$.fn.
get
=
function
(
index
) {
return
index ===
undefined
? [].
slice
.
call
(
this
) :
this
[index >=
0
? index : index +
this
.
length
]; };