source: issm/oecreview/Archive/19101-20495/ISSM-19804-19805.diff@ 20498

Last change on this file since 20498 was 20498, checked in by Mathieu Morlighem, 9 years ago

CHG: done with Archive/19101-20495

File size: 436 bytes
  • ../trunk-jpl/src/m/array/arrayoperations.js

     
    300300
    301301        return arr;
    302302} //}}}
     303function MapIsEmpty(map) { //{{{
     304        for (var key in map){
     305                if(map.hasOwnProperty(key)){
     306                        return false;
     307                }
     308        }
     309        return true;
     310} //}}}
Note: See TracBrowser for help on using the repository browser.