Skip to content

Commit f3313fd

Browse files
authored
core/main/client/browser.js: Fix array unique function (beefproject#1966)
1 parent 7fa269f commit f3313fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/main/client/browser.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3919,8 +3919,8 @@ beef.browser = {
39193919
var results;
39203920

39213921
function unique(array) {
3922-
return $.grep(array, function(el, index) {
3923-
return index === $.inArray(el, array);
3922+
return $j.grep(array, function(el, index) {
3923+
return index === $j.inArray(el, array);
39243924
});
39253925
}
39263926

0 commit comments

Comments
 (0)