我正在尝试将下面的 jQuery 扩展转换为类似原型的扩展:
$.some = function(array, cmp_bool, context) {
if (Array.prototype.some) {
return array.some(cmp_bool, context);
} else {
if (context) {
cmp_bool = $.proxy(cmp_bool, context);
}
return !!($.grep(array, cmp_bool).length)
}
};