Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

refactor(indexOf) use Array.prototype.indexOf exclusively #8847

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/.jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
"map": false,
"size": false,
"includes": false,
"indexOf": false,
"arrayRemove": false,
"isLeafNode": false,
"copy": false,
Expand Down
16 changes: 3 additions & 13 deletions src/Angular.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
map: true,
size: true,
includes: true,
indexOf: true,
arrayRemove: true,
isLeafNode: true,
copy: true,
Expand Down Expand Up @@ -651,20 +650,11 @@ function size(obj, ownPropsOnly) {


function includes(array, obj) {
return indexOf(array, obj) != -1;
}

function indexOf(array, obj) {
if (array.indexOf) return array.indexOf(obj);

for (var i = 0; i < array.length; i++) {
if (obj === array[i]) return i;
}
return -1;
return Array.prototype.indexOf.call(array, obj) != -1;
}

function arrayRemove(array, value) {
var index = indexOf(array, value);
var index = array.indexOf(value);
if (index >=0)
array.splice(index, 1);
return value;
Expand Down Expand Up @@ -769,7 +759,7 @@ function copy(source, destination, stackSource, stackDest) {
stackDest = stackDest || [];

if (isObject(source)) {
var index = indexOf(stackSource, source);
var index = stackSource.indexOf(source);
if (index !== -1) return stackDest[index];

stackSource.push(source);
Expand Down
2 changes: 1 addition & 1 deletion src/ng/directive/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ function FormController(element, attrs, $scope, $animate) {
var pendingChange, pending = form.$pending && form.$pending[validationToken];

if (pending) {
pendingChange = indexOf(pending, control) >= 0;
pendingChange = pending.indexOf(control) >= 0;
if (pendingChange) {
arrayRemove(pending, control);
pendingCount--;
Expand Down
2 changes: 1 addition & 1 deletion src/ng/http.js
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ function $HttpProvider() {


function removePendingReq() {
var idx = indexOf($http.pendingRequests, config);
var idx = $http.pendingRequests.indexOf(config);
if (idx !== -1) $http.pendingRequests.splice(idx, 1);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/ng/rootScope.js
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ function $RootScopeProvider(){

var self = this;
return function() {
namedListeners[indexOf(namedListeners, listener)] = null;
namedListeners[namedListeners.indexOf(listener)] = null;
decrementListenerCount(self, 1, name);
};
},
Expand Down
1 change: 0 additions & 1 deletion src/ngScenario/.jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"browserTrigger": false,
"console": false,
"alert": false,
"indexOf": false,
"_jQuery": false,
"angularInit": false,
"formatException": false,
Expand Down
2 changes: 1 addition & 1 deletion src/ngScenario/Scenario.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ angular.scenario.setUpAndRun = function(config) {
}

angular.forEach(angular.scenario.output, function(fn, name) {
if (!output.length || indexOf(output,name) != -1) {
if (!output.length || output.indexOf(name) != -1) {
var context = body.append('<div></div>').find('div:last');
context.attr('id', name);
fn.call({}, context, $runner, objModel);
Expand Down
13 changes: 1 addition & 12 deletions src/ngScenario/browserTrigger.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,6 @@
(function() {
var msie = parseInt((/msie (\d+)/.exec(navigator.userAgent.toLowerCase()) || [])[1], 10);

function indexOf(array, obj) {
if (array.indexOf) return array.indexOf(obj);

for ( var i = 0; i < array.length; i++) {
if (obj === array[i]) return i;
}
return -1;
}



/**
* Triggers a browser event. Attempts to choose the right event if one is
* not specified.
Expand Down Expand Up @@ -60,7 +49,7 @@

keys = keys || [];
function pressed(key) {
return indexOf(keys, key) !== -1;
return keys.indexOf(key) !== -1;
}

if (msie < 9) {
Expand Down
1 change: 0 additions & 1 deletion test/.jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
"map": false,
"size": false,
"includes": false,
"indexOf": false,
"arrayRemove": false,
"isLeafNode": false,
"copy": false,
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/matchers.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ beforeEach(function() {


toBeOneOf: function() {
return indexOf(arguments, this.actual) !== -1;
return Array.prototype.indexOf.call(arguments, this.actual) !== -1;
},

toHaveClass: function(clazz) {
Expand Down
2 changes: 1 addition & 1 deletion test/helpers/testabilityPatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function sortedHtml(element, showNgClass) {
var value = node.style[css];
if (isString(value) && isString(css) && css != 'cssText' && value && (1*css != css)) {
var text = lowercase(css + ': ' + value);
if (value != 'false' && indexOf(style, text) == -1) {
if (value != 'false' && style.indexOf(text) == -1) {
style.push(text);
}
}
Expand Down
4 changes: 2 additions & 2 deletions test/ng/httpBackendSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe('$httpBackend', function() {
while (len--) fakeTimeout.fns.shift()();
};
fakeTimeout.cancel = function(id) {
var i = indexOf(fakeTimeout.ids, id);
var i = fakeTimeout.ids.indexOf(id);
if (i >= 0) {
fakeTimeout.fns.splice(i, 1);
fakeTimeout.delays.splice(i, 1);
Expand All @@ -50,7 +50,7 @@ describe('$httpBackend', function() {
fakeDocument.$$scripts.push(script);
}),
removeChild: jasmine.createSpy('body.removeChild').andCallFake(function(script) {
var index = indexOf(fakeDocument.$$scripts, script);
var index = fakeDocument.$$scripts.indexOf(script);
if (index != -1) {
fakeDocument.$$scripts.splice(index, 1);
}
Expand Down