속성 확장

1260 단어 속성
//  

        // @param isCover     true

        this.extend = function(destination, source, isCover) {

            var isUndefined = this.isUndefined;

            (isUndefined(isCover)) && ( isCover = true);

            for (var name in source) {

                if (isCover || isUndefined(destination[name])) {

                    destination[name] = source[name];

                }

            }

            return destination;

        };

좋은 웹페이지 즐겨찾기