diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/README.md b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/README.md
new file mode 100644
index 00000000000..e505a1e7114
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/README.md
@@ -0,0 +1,153 @@
+
+
+# FLOAT32_MAX_BASE10_EXPONENT
+
+> The maximum base 10 exponent for a [single-precision floating-point number][ieee754].
+
+
+
+## Usage
+
+
+
+```javascript
+var FLOAT32_MAX_BASE10_EXPONENT = require( '@stdlib/constants/float32/max-base10-exponent' );
+```
+
+#### FLOAT32_MAX_BASE10_EXPONENT
+
+The maximum base 10 exponent for a [single-precision floating-point number][ieee754].
+
+
+
+```javascript
+var bool = ( FLOAT32_MAX_BASE10_EXPONENT === 38 );
+// returns true
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+
+
+
+
+```javascript
+var FLOAT32_MAX_BASE10_EXPONENT = require( '@stdlib/constants/float32/max-base10-exponent' );
+
+console.log( FLOAT32_MAX_BASE10_EXPONENT );
+// => 38
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/constants/float32/max_base10_exponent.h"
+```
+
+#### STDLIB_CONSTANT_FLOAT32_MAX_BASE10_EXPONENT
+
+Macro for the maximum base 10 exponent for a [single-precision floating-point number][ieee754].
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985
+
+
+
+[@stdlib/constants/float32/max-base2-exponent]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float32/max-base2-exponent
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/docs/repl.txt b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/docs/repl.txt
new file mode 100644
index 00000000000..fbf284c7262
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/docs/repl.txt
@@ -0,0 +1,12 @@
+
+{{alias}}
+ The maximum base 10 exponent for a single-precision floating-point number.
+
+ Examples
+ --------
+ > {{alias}}
+ 38
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/docs/types/index.d.ts
new file mode 100644
index 00000000000..7375c65163f
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/docs/types/index.d.ts
@@ -0,0 +1,33 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* 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.
+*/
+
+// TypeScript Version: 4.1
+
+/**
+* The maximum base 10 exponent for a single-precision floating-point number.
+*
+* @example
+* var exp = FLOAT32_MAX_BASE10_EXPONENT;
+* // returns 38
+*/
+declare const FLOAT32_MAX_BASE10_EXPONENT: number;
+
+
+// EXPORTS //
+
+export = FLOAT32_MAX_BASE10_EXPONENT;
diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/docs/types/test.ts
new file mode 100644
index 00000000000..a72b7dd730f
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/docs/types/test.ts
@@ -0,0 +1,28 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* 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.
+*/
+
+import FLOAT32_MAX_BASE10_EXPONENT = require( './index' );
+
+
+// TESTS //
+
+// The export is a number...
+{
+ // eslint-disable-next-line @typescript-eslint/no-unused-expressions
+ FLOAT32_MAX_BASE10_EXPONENT; // $ExpectType number
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/examples/index.js b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/examples/index.js
new file mode 100644
index 00000000000..2adeef0b6d0
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/examples/index.js
@@ -0,0 +1,24 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* 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.
+*/
+
+'use strict';
+
+var FLOAT32_MAX_BASE10_EXPONENT = require( './../lib' );
+
+console.log( FLOAT32_MAX_BASE10_EXPONENT );
+// => 38
diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/include/stdlib/constants/float32/max_base10_exponent.h b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/include/stdlib/constants/float32/max_base10_exponent.h
new file mode 100644
index 00000000000..7bffc19a85e
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/include/stdlib/constants/float32/max_base10_exponent.h
@@ -0,0 +1,27 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* 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.
+*/
+
+#ifndef STDLIB_CONSTANTS_FLOAT32_MAX_BASE10_EXPONENT_H
+#define STDLIB_CONSTANTS_FLOAT32_MAX_BASE10_EXPONENT_H
+
+/**
+* Macro for the maximum base 10 exponent for a single-precision floating-point number.
+*/
+#define STDLIB_CONSTANT_FLOAT32_MAX_BASE10_EXPONENT 38
+
+#endif // !STDLIB_CONSTANTS_FLOAT32_MAX_BASE10_EXPONENT_H
diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/lib/index.js b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/lib/index.js
new file mode 100644
index 00000000000..18c1290ccf9
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/lib/index.js
@@ -0,0 +1,48 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* 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.
+*/
+
+'use strict';
+
+/**
+* The maximum base 10 exponent for a single-precision floating-point number.
+*
+* @module @stdlib/constants/float32/max-base10-exponent
+* @type {integer32}
+*
+* @example
+* var FLOAT32_MAX_BASE10_EXPONENT = require( '@stdlib/constants/float32/max-base10-exponent' );
+* // returns 38
+*/
+
+
+// MAIN //
+
+/**
+* The maximum base 10 exponent for a single-precision floating-point number.
+*
+* @constant
+* @type {integer32}
+* @default 38
+* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
+*/
+var FLOAT32_MAX_BASE10_EXPONENT = 38|0; // asm type annotation
+
+
+// EXPORTS //
+
+module.exports = FLOAT32_MAX_BASE10_EXPONENT;
diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/manifest.json b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/manifest.json
new file mode 100644
index 00000000000..844d692f643
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/manifest.json
@@ -0,0 +1,36 @@
+{
+ "options": {},
+ "fields": [
+ {
+ "field": "src",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "include",
+ "resolve": true,
+ "relative": true
+ },
+ {
+ "field": "libraries",
+ "resolve": false,
+ "relative": false
+ },
+ {
+ "field": "libpath",
+ "resolve": true,
+ "relative": false
+ }
+ ],
+ "confs": [
+ {
+ "src": [],
+ "include": [
+ "./include"
+ ],
+ "libraries": [],
+ "libpath": [],
+ "dependencies": []
+ }
+ ]
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/package.json b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/package.json
new file mode 100644
index 00000000000..16d3b6d3e56
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/package.json
@@ -0,0 +1,67 @@
+{
+ "name": "@stdlib/constants/float32/max-base10-exponent",
+ "version": "0.0.0",
+ "description": "The maximum base 10 exponent for a single-precision floating-point number.",
+ "license": "Apache-2.0",
+ "author": {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ },
+ "contributors": [
+ {
+ "name": "The Stdlib Authors",
+ "url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
+ }
+ ],
+ "main": "./lib",
+ "directories": {
+ "doc": "./docs",
+ "example": "./examples",
+ "include": "./include",
+ "lib": "./lib",
+ "test": "./test"
+ },
+ "types": "./docs/types",
+ "scripts": {},
+ "homepage": "https://github.com/stdlib-js/stdlib",
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/stdlib-js/stdlib.git"
+ },
+ "bugs": {
+ "url": "https://github.com/stdlib-js/stdlib/issues"
+ },
+ "dependencies": {},
+ "devDependencies": {},
+ "engines": {
+ "node": ">=0.10.0",
+ "npm": ">2.7.0"
+ },
+ "os": [
+ "aix",
+ "darwin",
+ "freebsd",
+ "linux",
+ "macos",
+ "openbsd",
+ "sunos",
+ "win32",
+ "windows"
+ ],
+ "keywords": [
+ "stdlib",
+ "stdmath",
+ "constant",
+ "const",
+ "mathematics",
+ "math",
+ "single",
+ "floating-point",
+ "float",
+ "ieee754",
+ "exponent",
+ "max",
+ "maximum",
+ "base 10"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/test/test.js b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/test/test.js
new file mode 100644
index 00000000000..7a1b05ae108
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/max-base10-exponent/test/test.js
@@ -0,0 +1,38 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2024 The Stdlib Authors.
+*
+* 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.
+*/
+
+'use strict';
+
+// MODULES //
+
+var tape = require( 'tape' );
+var FLOAT32_MAX_BASE10_EXPONENT = require( './../lib' );
+
+
+// TESTS //
+
+tape( 'main export is a number', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof FLOAT32_MAX_BASE10_EXPONENT, 'number', 'main export is a number' );
+ t.end();
+});
+
+tape( 'the exported value is `38`', function test( t ) {
+ t.equal( FLOAT32_MAX_BASE10_EXPONENT, 38, 'equals 38' );
+ t.end();
+});