Add isTypedArray to Electron exports
This commit is contained in:
parent
e6c8900a18
commit
2757046e71
2 changed files with 6 additions and 0 deletions
|
@ -44,6 +44,7 @@
|
|||
'lib/common/api/deprecate.js',
|
||||
'lib/common/api/deprecations.js',
|
||||
'lib/common/api/is-promise.js',
|
||||
'lib/common/api/is-typed-array.js',
|
||||
'lib/common/api/exports/electron.js',
|
||||
'lib/common/api/native-image.js',
|
||||
'lib/common/api/shell.js',
|
||||
|
|
|
@ -48,6 +48,11 @@ exports.defineProperties = function (exports) {
|
|||
get: function () {
|
||||
return require('../is-promise')
|
||||
}
|
||||
},
|
||||
isTypedArray: {
|
||||
get: function () {
|
||||
return require('../is-typed-array')
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue