@@ -317,7 +317,11 @@ async function buildPropertySpecsAndDtypes(
317317 declaredHints . map ( ( p ) => [ String ( p . identifier ) , p ] ) ,
318318 ) ;
319319
320- const names = await listAttributeNames ( sharedKvStoreContext , levelUrl , options ) ;
320+ const names = await listAttributeNames (
321+ sharedKvStoreContext ,
322+ levelUrl ,
323+ options ,
324+ ) ;
321325
322326 // Stable order: declared properties first (in their declared order),
323327 // then any remaining listed attributes in alphabetical order.
@@ -346,8 +350,7 @@ async function buildPropertySpecsAndDtypes(
346350 `attribute ${ JSON . stringify ( name ) } metadata` ,
347351 options ,
348352 ) ;
349- dtype =
350- arrayMeta ?. attributes ?. dtype ?? arrayMeta ?. data_type ?? undefined ;
353+ dtype = arrayMeta ?. attributes ?. dtype ?? arrayMeta ?. data_type ?? undefined ;
351354 } catch {
352355 dtype = undefined ;
353356 }
@@ -497,13 +500,13 @@ async function buildAnnotationMetadata(
497500 }
498501 const rank = bounds [ 0 ] . length ;
499502 if ( bounds [ 1 ] . length !== rank ) {
500- throw new Error ( "zarr-vectors store: bounds[0] and bounds[1] have different rank" ) ;
503+ throw new Error (
504+ "zarr-vectors store: bounds[0] and bounds[1] have different rank" ,
505+ ) ;
501506 }
502507 const chunkShape = zv . chunk_shape ;
503508 if ( ! Array . isArray ( chunkShape ) || chunkShape . length !== rank ) {
504- throw new Error (
505- `zarr-vectors store: 'chunk_shape' must have rank ${ rank } ` ,
506- ) ;
509+ throw new Error ( `zarr-vectors store: 'chunk_shape' must have rank ${ rank } ` ) ;
507510 }
508511
509512 const lowerBounds = Float64Array . from ( bounds [ 0 ] , Number ) ;
0 commit comments