mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-01-01 03:31:21 +00:00
44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
/*
|
|
Copyright 2013-2014 Daniel Wirtz <dcode@dcode.io>
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @license bytebuffer.js (c) 2015 Daniel Wirtz <dcode@dcode.io>
|
|
//? if (DATAVIEW)
|
|
* Backing buffer: ArrayBuffer, Accessor: DataView
|
|
//? else
|
|
* Backing buffer: ArrayBuffer, Accessor: Uint8Array
|
|
* Released under the Apache License, Version 2.0
|
|
* see: https://github.com/dcodeIO/bytebuffer.js for details
|
|
*/
|
|
(function(global, factory) {
|
|
|
|
/* AMD */ if (typeof define === 'function' && define["amd"])
|
|
define(["long"], factory);
|
|
/* CommonJS */ else if (typeof require === 'function' && typeof module === "object" && module && module["exports"])
|
|
module['exports'] = (function() {
|
|
var Long; try { Long = require("long"); } catch (e) {}
|
|
return factory(Long);
|
|
})();
|
|
/* Global */ else
|
|
(global["dcodeIO"] = global["dcodeIO"] || {})["ByteBuffer"] = factory(global["dcodeIO"]["Long"]);
|
|
|
|
})(this, function(Long) {
|
|
"use strict";
|
|
|
|
//? include("bytebuffer.js");
|
|
return ByteBuffer;
|
|
});
|