Skip to content

Instantly share code, notes, and snippets.

@splosch
Created February 6, 2019 14:29

Revisions

  1. splosch created this gist Feb 6, 2019.
    28 changes: 28 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,28 @@
    // allow Object.values(myObject) for IE
    // alternative in a npm controlled environment: https://www.npmjs.com/package/object.values
    Object.values = Object.values ? Object.values : function(obj) {
    var allowedTypes = ["[object String]", "[object Object]", "[object Array]", "[object Function]"];
    var objType = Object.prototype.toString.call(obj);

    if(obj === null || typeof obj === "undefined") {
    throw new TypeError("Cannot convert undefined or null to object");
    } else if(!~allowedTypes.indexOf(objType)) {
    return [];
    } else {
    // if ES6 is supported
    if (Object.keys) {
    return Object.keys(obj).map(function (key) {
    return obj[key];
    });
    }

    var result = [];
    for (var prop in obj) {
    if (obj.hasOwnProperty(prop)) {
    result.push(obj[prop]);
    }
    }

    return result;
    }
    };