From a91270d0518eb1dba6cd0779a1b257de65a94b96 Mon Sep 17 00:00:00 2001 From: Tim Golen Date: Tue, 10 May 2016 14:32:55 -0600 Subject: [PATCH 1/2] Make isTypeOf compatible with IE --- lib/str.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/str.js b/lib/str.js index 5962fcf1..eddbc434 100644 --- a/lib/str.js +++ b/lib/str.js @@ -572,7 +572,7 @@ module.exports = { * @return {Boolean} */ isTypeOf(obj, type) { - return toString.call(obj) === `[object ${type}]`; + return Object.prototype.toString.call(obj) === `[object ${type}]`; }, /** From 5a7da48b786a2267a1a81c2af5ee7d1fcdd327da Mon Sep 17 00:00:00 2001 From: Tim Golen Date: Tue, 10 May 2016 14:33:45 -0600 Subject: [PATCH 2/2] build version 1.1.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 54f929cd..0e2f8683 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "js-libs", - "version": "1.1.1", + "version": "1.1.2", "description": "JavaScript libraries that are shared across different repos", "main": "index.js", "license": "UNLICENSED",