Guest User

Untitled

a guest
Jun 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. someController = SC.Controller.create({
  2. isTypeCheckCreator: function(type){
  3. return function(name){
  4. return (name.toLowerCase().indexOf(type)!= -1);
  5. }
  6. },
  7.  
  8. isJPG: this.isTypeCheckCreator('.jpg'),
  9.  
  10. isPNG: this.isTypeCheckCreator('.png')
  11.  
  12. });
Add Comment
Please, Sign In to add comment