Add isTypedArray to Electron exports

This commit is contained in:
haad 2016-07-23 11:22:30 +01:00
parent e6c8900a18
commit 2757046e71
2 changed files with 6 additions and 0 deletions

View file

@ -48,6 +48,11 @@ exports.defineProperties = function (exports) {
get: function () {
return require('../is-promise')
}
},
isTypedArray: {
get: function () {
return require('../is-typed-array')
}
}
})
}