diff --git a/src/symbol.js b/src/symbol.js index 362f5b0..24ca9ff 100644 --- a/src/symbol.js +++ b/src/symbol.js @@ -248,7 +248,7 @@ import {PLATFORM} from 'aurelia-pal'; descriptor.value = function () { var str = toString.call(this), - tst = typeof this === 'undefined' ? undefined : this[Symbol.toStringTag] + tst = typeof this === 'undefined' || this === null ? undefined : this[Symbol.toStringTag] ; return typeof tst === 'undefined' ? str : ('[object ' + tst + ']'); };