diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/README.md b/lib/node_modules/@stdlib/constants/float32/eulergamma/README.md
new file mode 100644
index 000000000000..7fd2d2636233
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/README.md
@@ -0,0 +1,156 @@
+
+
+# EULERGAMMA
+
+> The [Euler-Mascheroni][eulergamma] constant.
+
+
+
+The [Euler-Mascheroni][eulergamma] constant `gamma` (also known as "Euler's constant" or "the Euler constant") is defined as the limit of the sequence
+
+
+
+```math
+\gamma = \lim_{n\to\infty} \left( \sum_{k=1}^n \frac{1}{k} - \ln n \right)
+```
+
+
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var EULERGAMMA = require( '@stdlib/constants/float32/eulergamma' );
+```
+
+#### EULERGAMMA
+
+The [Euler-Mascheroni][eulergamma] constant.
+
+```javascript
+var bool = ( EULERGAMMA === 0.5772156715393066 );
+// returns true
+```
+
+
+
+
+
+
+
+## Examples
+
+
+
+
+
+```javascript
+var EULERGAMMA = require( '@stdlib/constants/float32/eulergamma' );
+
+console.log( EULERGAMMA );
+// => 0.5772156715393066
+```
+
+
+
+
+
+
+
+* * *
+
+
+
+## C APIs
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Usage
+
+```c
+#include "stdlib/constants/float32/eulergamma.h"
+```
+
+#### STDLIB_CONSTANT_FLOAT32_EULERGAMMA
+
+Macro for the [Euler-Mascheroni][eulergamma] constant.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[eulergamma]: http://mathworld.wolfram.com/Euler-MascheroniConstant.html
+
+
+
+
diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/img/equation_eulergamma_constant.svg b/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/img/equation_eulergamma_constant.svg
new file mode 100644
index 000000000000..26ceed1c4f80
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/img/equation_eulergamma_constant.svg
@@ -0,0 +1,64 @@
+
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/repl.txt b/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/repl.txt
new file mode 100644
index 000000000000..ebf3e44419e4
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/repl.txt
@@ -0,0 +1,12 @@
+
+{{alias}}
+ The Euler-Mascheroni constant as a single-precision floating-point number.
+
+ Examples
+ --------
+ > {{alias}}
+ 0.5772156715393066
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/types/index.d.ts
new file mode 100644
index 000000000000..39d0e9924e31
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/types/index.d.ts
@@ -0,0 +1,33 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2019 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 Euler-Mascheroni constant as a single-precision floating-point number.
+*
+* @example
+* var val = GAMMA;
+* // returns 0.5772156715393066
+*/
+declare const GAMMA: number;
+
+
+// EXPORTS //
+
+export = GAMMA;
diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/types/test.ts
new file mode 100644
index 000000000000..fc3eea91b80e
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/docs/types/test.ts
@@ -0,0 +1,28 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2019 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 GAMMA = require( './index' );
+
+
+// TESTS //
+
+// The export is a number...
+{
+ // eslint-disable-next-line @typescript-eslint/no-unused-expressions
+ GAMMA; // $ExpectType number
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/examples/index.js b/lib/node_modules/@stdlib/constants/float32/eulergamma/examples/index.js
new file mode 100644
index 000000000000..ceeabac20f3d
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/examples/index.js
@@ -0,0 +1,24 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2018 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 GAMMA = require( './../lib' );
+
+console.log( GAMMA );
+// => 0.5772156715393066
diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/include/stdlib/constants/float64/eulergamma.h b/lib/node_modules/@stdlib/constants/float32/eulergamma/include/stdlib/constants/float64/eulergamma.h
new file mode 100644
index 000000000000..1691a3d7c2e2
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/include/stdlib/constants/float64/eulergamma.h
@@ -0,0 +1,27 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2022 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_EULERGAMMA_H
+#define STDLIB_CONSTANTS_FLOAT32_EULERGAMMA_H
+
+/**
+* Macro for the Euler-Mascheroni constant as a single-precision floating-point number.
+*/
+#define STDLIB_CONSTANT_FLOAT32_EULERGAMMA 0.5772156715393066f
+
+#endif // !STDLIB_CONSTANTS_FLOAT64_EULERGAMMA_H
diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/lib/index.js b/lib/node_modules/@stdlib/constants/float32/eulergamma/lib/index.js
new file mode 100644
index 000000000000..2b8edb36850e
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/lib/index.js
@@ -0,0 +1,52 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2018 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 Euler-Mascheroni constant as a single-precision floating-point number.
+*
+* @module @stdlib/constants/float32/eulergamma
+* @type {number}
+*
+* @example
+* var GAMMA = require( '@stdlib/constants/float32/eulergamma' );
+* // returns 0.5772156715393066
+*/
+
+// MODULES //
+var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
+
+
+// MAIN //
+
+/**
+* The Euler-Mascheroni constant as a single-precision floating-point number.
+*
+* @constant
+* @type {number}
+* @default 0.5772156649015329
+* @see [OEIS]{@link http://oeis.org/A001620}
+* @see [Mathworld]{@link http://mathworld.wolfram.com/Euler-MascheroniConstant.html}
+*/
+var GAMMA = float64ToFloat32(0.577215664901532860606512090082402431042);
+
+
+// EXPORTS //
+
+module.exports = GAMMA;
diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/manifest.json b/lib/node_modules/@stdlib/constants/float32/eulergamma/manifest.json
new file mode 100644
index 000000000000..844d692f6439
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/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/eulergamma/package.json b/lib/node_modules/@stdlib/constants/float32/eulergamma/package.json
new file mode 100644
index 000000000000..dc1b882e65ec
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/package.json
@@ -0,0 +1,72 @@
+{
+ "name": "@stdlib/constants/float32/eulergamma",
+ "version": "0.0.0",
+ "description": "The Euler-Mascheroni constant as 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",
+ "euler",
+ "euler-mascheroni",
+ "mascheroni",
+ "eulers constant",
+ "euler constant",
+ "gamma",
+ "eulergamma",
+ "ieee754",
+ "double",
+ "dbl",
+ "precision",
+ "floating-point",
+ "float64"
+ ]
+}
diff --git a/lib/node_modules/@stdlib/constants/float32/eulergamma/test/test.js b/lib/node_modules/@stdlib/constants/float32/eulergamma/test/test.js
new file mode 100644
index 000000000000..f05834e7ff9d
--- /dev/null
+++ b/lib/node_modules/@stdlib/constants/float32/eulergamma/test/test.js
@@ -0,0 +1,39 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2018 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 GAMMA = require( './../lib' );
+var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
+
+
+// TESTS //
+
+tape( 'main export is a number', function test( t ) {
+ t.ok( true, __filename );
+ t.strictEqual( typeof GAMMA, 'number', 'main export is a number' );
+ t.end();
+});
+
+tape( 'the exported value is a double-precision floating-point number equal to 0.5772156715393066', function test( t ) {
+ t.equal( GAMMA, float64ToFloat32(0.5772156649015329), 'returns 0.5772156715393066' );
+ t.end();
+});