Skip to content

Commit

Permalink
IE Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusmaso committed Jul 5, 2017
1 parent 3747ce0 commit afe695b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/handlebars.binding.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// handlebars.binding
// ------------------
// v0.3.7
// v0.3.8
//
// Copyright (c) 2013-2017 Mateus Maso
// Distributed under MIT license
Expand Down Expand Up @@ -1133,7 +1133,7 @@ function isObject(object) {
}

function isString(object) {
return toString.call(object) == '[object String]';
return typeof object === 'string' || object instanceof String;
}

function uniqueId() {
Expand Down
Loading

0 comments on commit afe695b

Please sign in to comment.