Skip to content

Commit ae132af

Browse files
committed
Add space between value and units
1 parent eb11079 commit ae132af

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/node_modules/@stdlib/_tools/bundle/scripts/update_dist_readme_browser_bundle_stats

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ var FILES = /files="([^"]*)"/;
5050
*/
5151
function bytes2str( bytes ) {
5252
if ( bytes/1.0e6 > 1.0 ) {
53-
return roundn( bytes/1.0e6, -3 ) + 'MB';
53+
return roundn( bytes/1.0e6, -3 ) + ' MB';
5454
}
55-
return roundn( bytes/1.0e3, -3 ) + 'kB';
55+
return roundn( bytes/1.0e3, -3 ) + ' kB';
5656
} // end FUNCTION bytes2str()
5757

5858
/**

0 commit comments

Comments
 (0)