diff --git a/lib/node_modules/@stdlib/constants/float64/eulergamma/docs/types/index.d.ts b/lib/node_modules/@stdlib/constants/float64/eulergamma/docs/types/index.d.ts index a58fc74a6ab9..fe3ee6c24490 100644 --- a/lib/node_modules/@stdlib/constants/float64/eulergamma/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/constants/float64/eulergamma/docs/types/index.d.ts @@ -22,12 +22,12 @@ * The Euler-Mascheroni constant. * * @example -* var val = GAMMA; +* var val = EULERGAMMA; * // returns 0.5772156649015329 */ -declare const GAMMA: number; +declare const EULERGAMMA: number; // EXPORTS // -export = GAMMA; +export = EULERGAMMA; diff --git a/lib/node_modules/@stdlib/constants/float64/eulergamma/docs/types/test.ts b/lib/node_modules/@stdlib/constants/float64/eulergamma/docs/types/test.ts index fc3eea91b80e..7c0e64321888 100644 --- a/lib/node_modules/@stdlib/constants/float64/eulergamma/docs/types/test.ts +++ b/lib/node_modules/@stdlib/constants/float64/eulergamma/docs/types/test.ts @@ -16,7 +16,7 @@ * limitations under the License. */ -import GAMMA = require( './index' ); +import EULERGAMMA = require( './index' ); // TESTS // @@ -24,5 +24,5 @@ import GAMMA = require( './index' ); // The export is a number... { // eslint-disable-next-line @typescript-eslint/no-unused-expressions - GAMMA; // $ExpectType number + EULERGAMMA; // $ExpectType number } diff --git a/lib/node_modules/@stdlib/constants/float64/eulergamma/examples/index.js b/lib/node_modules/@stdlib/constants/float64/eulergamma/examples/index.js index 90ce63534d51..c8797ddfa628 100644 --- a/lib/node_modules/@stdlib/constants/float64/eulergamma/examples/index.js +++ b/lib/node_modules/@stdlib/constants/float64/eulergamma/examples/index.js @@ -18,7 +18,7 @@ 'use strict'; -var GAMMA = require( './../lib' ); +var EULERGAMMA = require( './../lib' ); -console.log( GAMMA ); +console.log( EULERGAMMA ); // => 0.5772156649015329 diff --git a/lib/node_modules/@stdlib/constants/float64/eulergamma/lib/index.js b/lib/node_modules/@stdlib/constants/float64/eulergamma/lib/index.js index 69ce4d6274fa..09039ad5d1f7 100644 --- a/lib/node_modules/@stdlib/constants/float64/eulergamma/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float64/eulergamma/lib/index.js @@ -25,7 +25,7 @@ * @type {number} * * @example -* var GAMMA = require( '@stdlib/constants/float64/eulergamma' ); +* var EULERGAMMA = require( '@stdlib/constants/float64/eulergamma' ); * // returns 0.5772156649015329 */ @@ -41,9 +41,9 @@ * @see [OEIS]{@link http://oeis.org/A001620} * @see [Mathworld]{@link http://mathworld.wolfram.com/Euler-MascheroniConstant.html} */ -var GAMMA = 0.577215664901532860606512090082402431042; +var EULERGAMMA = 0.577215664901532860606512090082402431042; // EXPORTS // -module.exports = GAMMA; +module.exports = EULERGAMMA; diff --git a/lib/node_modules/@stdlib/constants/float64/eulergamma/test/test.js b/lib/node_modules/@stdlib/constants/float64/eulergamma/test/test.js index 1a6cb544317a..1a077914dd17 100644 --- a/lib/node_modules/@stdlib/constants/float64/eulergamma/test/test.js +++ b/lib/node_modules/@stdlib/constants/float64/eulergamma/test/test.js @@ -21,18 +21,18 @@ // MODULES // var tape = require( 'tape' ); -var GAMMA = require( './../lib' ); +var EULERGAMMA = require( './../lib' ); // 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.strictEqual( typeof EULERGAMMA, 'number', 'main export is a number' ); t.end(); }); tape( 'the exported value is a double-precision floating-point number equal to 0.5772156649015329', function test( t ) { - t.equal( GAMMA, 0.5772156649015329, 'returns 0.5772156649015329' ); + t.equal( EULERGAMMA, 0.5772156649015329, 'returns 0.5772156649015329' ); t.end(); });