merge
deprecatedIn order to promote consistency with the jQuery library, users are encouraged to instead use the static method of the same name.
@example
const $ = cheerio.load('');
$.merge([1, 2], [3, 4]);
//=> [1, 2, 3, 4]
const merge: staticMethods.merge;