Guest User

Untitled

a guest
Jul 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2. for (var prop in obj) {
  3. if (obj.hasOwnProperty(prop)) {
  4. if (typeof(obj[prop]) != 'function') {
  5. sch.error('obj.'+prop+' ('+typeof(obj[prop])+') : '+obj[prop]);
  6. } else {
  7. sch.error('obj.'+prop+' ('+typeof(obj[prop])+')');
  8. }
  9. }
  10. }
Add Comment
Please, Sign In to add comment