This repository was archived by the owner on May 25, 2023. It is now read-only.

Description
There's been some work towards removing deprecated function usage over the last few months. It seems the below haven't been pointed out before, so here goes:
jQuery.isArray is deprecated; use Array.isArray
|
if (data.result && $.isArray(data.result.files)) { |
jQuery. isFunction() is deprecated. In most cases, its use can be replaced by typeof x === "function"
|
if (!$.isFunction(value)) { |
|
if (!$.isFunction(instance[options]) || options.charAt(0) === '_') { |