mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 09:54:52 +00:00
11 lines
189 B
JavaScript
11 lines
189 B
JavaScript
/**
|
|
* @file
|
|
* @copyright 2020 Aleksej Komarov
|
|
* @license MIT
|
|
*/
|
|
|
|
// Inferno needs Int32Array, and it is not covered by core-js.
|
|
if (!window.Int32Array) {
|
|
window.Int32Array = Array;
|
|
}
|