Skip to content

Commit 357c949

Browse files
committed
feat: add constants/float32/max-safe-nth-tribonacci
1 parent 24835b6 commit 357c949

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/constants/float64/max-safe-nth-tribonacci/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
'use strict';
2020

21-
var FLOAT64_MAX_SAFE_NTH_TRIBONACCI = require( './../lib' );
21+
var FLOAT64_MAX_SAFE_NTH_TRIBONACCI = require( './../lib' ); // eslint-disable-line id-length
2222

2323
var v;
2424
var i;

lib/node_modules/@stdlib/constants/float64/max-safe-nth-tribonacci/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* @see [Tribonacci number]{@link https://en.wikipedia.org/wiki/Tribonacci_number}
4242
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
4343
*/
44-
var FLOAT64_MAX_SAFE_NTH_TRIBONACCI = 63|0; // asm type annotation
44+
var FLOAT64_MAX_SAFE_NTH_TRIBONACCI = 63|0; // eslint-disable-line id-length
4545

4646

4747
// EXPORTS //

lib/node_modules/@stdlib/constants/float64/max-safe-nth-tribonacci/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var tape = require( 'tape' );
24-
var FLOAT64_MAX_SAFE_NTH_TRIBONACCI = require( './../lib' );
24+
var FLOAT64_MAX_SAFE_NTH_TRIBONACCI = require( './../lib' ); // eslint-disable-line id-length
2525

2626

2727
// TESTS //

0 commit comments

Comments
 (0)