Skip to content

Commit 83fda48

Browse files
committed
[fix]: resolve lint issue in javascipt
1 parent 3282571 commit 83fda48

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

lib/node_modules/@stdlib/_tools/pkgs/deps/lib/sync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ var debug = logger( 'pkg-deps:sync' );
5858
* var pkgs = [ '/path/to/package' ];
5959
*
6060
* var deps = pkgDeps( pkgs );
61-
* // returns [{...}]
61+
* // throws <Error>
6262
*/
6363
function pkgDeps( pkgs, options ) {
6464
var results;

lib/node_modules/@stdlib/math/base/special/roundn/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
#include "stdlib/math/base/special/roundn.h"
2020
#include "stdlib/math/base/napi/binary.h"
2121

22-
STDLIB_MATH_BASE_NAPI_MODULE_DI_D( stdlib_base_roundn )
22+
STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_roundn )

lib/node_modules/@stdlib/utils/get-prototype-of/lib/polyfill.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222

2323
var nativeClass = require( '@stdlib/utils/native-class' );
2424
var getProto = require( './proto.js' );
25-
var Object = require( '@stdlib/utils/global-object' );
25+
var Object = require( '@stdlib/utils/global-object' ).Object;
26+
2627

2728
// MAIN //
2829

0 commit comments

Comments
 (0)