Merge pull request #5819 from fredj/ArrayBuffer.isView

Add ArrayBuffer.isView method in externs/closure-compiler.js
This commit is contained in:
Frédéric Junod
2016-09-01 14:34:28 +02:00
committed by GitHub

View File

@@ -8,6 +8,18 @@
* @externs
*/
// see https://github.com/google/closure-compiler/pull/1991
/**
* @param {*} arg
* @return {boolean}
* @nosideeffects
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView
*/
ArrayBuffer.isView = function(arg) {};
// see https://github.com/google/closure-compiler/pull/1206
/**