js 테스트 대상 포함 특성

971 단어 js
    //Peter Michaux

    function isHostMethod(object, property) {

        var t = typeof object[property];

        return t == 'function' ||

            (!!(t == 'object' && object[property])) ||

                t == 'unknown';

    }



    result = isHostMethod(xhr, "open"); //true

    result = isHostMethod(xhr, "foo"); //false

좋은 웹페이지 즐겨찾기