Add ArrayBuffer.isView method in externs/closure-compiler.js

This commit is contained in:
Frederic Junod
2016-09-01 08:34:25 +02:00
parent 00905e8131
commit bb5c1664d0

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
/**