ie不支持的方法实现

  • assign
if (typeof Object.assign != 'function') {
    Object.assign = function (target) {
        'use strict';
        if (target == null) {
            throw new TypeError('Cannot convert undefined or null to object');
        }

        target = Object(target);
        for (var index = 1; index < arguments.length; index++) {
            var source = arguments[index];
            if (source != null) {
                for (var key in source) {
                    if (Object.prototype.hasOwnProperty.call(source, key)) {
                        target[key] = source[key];
                    }
                }
            }
        }
        return target;
    };
}
  • startsWith/endsWith
if (typeof String.prototype.startsWith != 'function') {
    String.prototype.startsWith = function (str) {
        if (str == null || str == '' || this.length == 0 || str.length > this.length)
            return false;
        return this.substr(0, str.length) == str;
    };
}
if (typeof String.prototype.endsWith != 'function') {
    String.prototype.endsWith = function (str) {
        if (str == null || str == '' || this.length == 0 || str.length > this.length)
            return false;
        return this.substring(this.length - str.length) == str;
    };
}

posted on 2022-04-11 22:38  路过君  阅读(2)  评论(0编辑  收藏  举报

导航