Socket
Socket
Sign inDemoInstall

@loaders.gl/loader-utils

Package Overview
Dependencies
Maintainers
9
Versions
311
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@loaders.gl/loader-utils - npm Package Compare versions

Comparing version 4.1.0-alpha.10 to 4.1.0-alpha.11

2

dist/json-loader.js

@@ -1,2 +0,2 @@

const VERSION = typeof "4.1.0-alpha.10" !== 'undefined' ? "4.1.0-alpha.10" : 'latest';
const VERSION = typeof "4.1.0-alpha.11" !== 'undefined' ? "4.1.0-alpha.11" : 'latest';
export const JSONLoader = {

@@ -3,0 +3,0 @@ name: 'JSON',

@@ -12,3 +12,3 @@ /**

*/
export declare function concatenateArrayBuffers(...sources: (ArrayBuffer | Uint8Array)[]): any;
export declare function concatenateArrayBuffers(...sources: (ArrayBuffer | Uint8Array)[]): ArrayBuffer;
/**

@@ -18,3 +18,3 @@ * Concatenate a sequence of ArrayBuffers from array

*/
export declare function concatenateArrayBuffersFromArray(sources: (ArrayBuffer | Uint8Array)[]): any;
export declare function concatenateArrayBuffersFromArray(sources: (ArrayBuffer | Uint8Array)[]): ArrayBuffer;
/**

@@ -21,0 +21,0 @@ * Concatenate arbitrary count of typed arrays

{
"name": "@loaders.gl/loader-utils",
"version": "4.1.0-alpha.10",
"version": "4.1.0-alpha.11",
"description": "Framework-independent loaders for 3D graphics formats",

@@ -50,6 +50,6 @@ "license": "MIT",

"@babel/runtime": "^7.3.1",
"@loaders.gl/worker-utils": "4.1.0-alpha.10",
"@loaders.gl/worker-utils": "4.1.0-alpha.11",
"@probe.gl/stats": "^4.0.2"
},
"gitHead": "19f43c2d90d8b50860c3f8e487429779a386287d"
"gitHead": "5d3e23bf93762b48c8c1d6d926ede7a97fe43ab0"
}

@@ -32,3 +32,3 @@ import {TypedArray} from '../../types';

*/
export function concatenateArrayBuffers(...sources: (ArrayBuffer | Uint8Array)[]): any {
export function concatenateArrayBuffers(...sources: (ArrayBuffer | Uint8Array)[]): ArrayBuffer {
return concatenateArrayBuffersFromArray(sources);

@@ -41,3 +41,5 @@ }

*/
export function concatenateArrayBuffersFromArray(sources: (ArrayBuffer | Uint8Array)[]): any {
export function concatenateArrayBuffersFromArray(
sources: (ArrayBuffer | Uint8Array)[]
): ArrayBuffer {
// Make sure all inputs are wrapped in typed arrays

@@ -44,0 +46,0 @@ const sourceArrays = sources.map((source2) =>

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc