Skip to content

Instantly share code, notes, and snippets.

@almaron
Created June 3, 2014 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save almaron/e63e111cbe323080347d to your computer and use it in GitHub Desktop.
Save almaron/e63e111cbe323080347d to your computer and use it in GitHub Desktop.
@app.factory 'ArrayService', ->
{
findInArrayBy: (array, index, value) ->
flag = false
angular.forEach array, (item, key)->
if item[index] == value
flag = true
flag
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment