MCPcopy Create free account
hub / github.com/EricSimons/ionic-course / arrayRemove

Function arrayRemove

code/songhop/www/lib/angular/angular.js:699–704  ·  view source on GitHub ↗
(array, value)

Source from the content-addressed store, hash-verified

697}
698
699function arrayRemove(array, value) {
700 var index = array.indexOf(value);
701 if (index >= 0)
702 array.splice(index, 1);
703 return value;
704}
705
706/**
707 * @ngdoc function

Callers 4

jqLiteOffFunction · 0.70
$CompileProviderFunction · 0.70
$RootScopeProviderFunction · 0.70
FormControllerFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected