upgrade outdated dependencies

This commit is contained in:
harttle
2017-07-28 21:25:24 +08:00
parent ea2a5f5c3b
commit 4ee2bc964c
28 changed files with 350 additions and 350 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ function isString (value) {
function isError (value) {
var signature = Object.prototype.toString.call(value)
// [object XXXError]
// [object XXXError]
return signature.substr(-6, 5) === 'Error' ||
(typeof value.message === 'string' && typeof value.name === 'string')
}