~khurshid-alam/gtk/packaging-xenial

« back to all changes in this revision

Viewing changes to debian/missing-sources/zlib.js-0.1.6/define/typedarray/hybrid.js

  • Committer: Khurshid Alam (Technologist)
  • Date: 2016-08-17 17:46:23 UTC
  • Revision ID: khurshid.alam@linuxmail.org-20160817174623-8nheg5eemu2jrzbf
gtk+3.0 packaging with icon-size patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * defines
 
3
 */
 
4
 
 
5
goog.provide('USE_TYPEDARRAY');
 
6
 
 
7
// Safari が typeof Uint8Array === 'object' になるため、
 
8
// 未定義か否かで Typed Array の使用を決定する
 
9
 
 
10
/** @const {boolean} use typed array flag. */
 
11
var USE_TYPEDARRAY =
 
12
  (typeof Uint8Array !== 'undefined') &&
 
13
  (typeof Uint16Array !== 'undefined') &&
 
14
  (typeof Uint32Array !== 'undefined');