Add isTypedArray to Electron exports
authorhaad <haad@headbanggames.com>
Sat, 23 Jul 2016 10:22:30 +0000 (11:22 +0100)
committerhaad <haad@headbanggames.com>
Sat, 23 Jul 2016 10:30:14 +0000 (11:30 +0100)
filenames.gypi
lib/common/api/exports/electron.js

index a3a4b6c..d5381e1 100644 (file)
@@ -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',
index efa44d4..4539649 100644 (file)
@@ -48,6 +48,11 @@ exports.defineProperties = function (exports) {
       get: function () {
         return require('../is-promise')
       }
+    },
+    isTypedArray: {
+      get: function () {
+        return require('../is-typed-array')
+      }
     }
   })
 }