Skip to content

Commit cab6d10

Browse files
committed
Explicitly require typed array constructors
1 parent 9172545 commit cab6d10

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

lib/node_modules/@stdlib/crypto/arc4/lib/ksa.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
// MODULES //
44

5+
var Uint8Array = require( '@stdlib/array/uint8' );
56
var swap = require( './swap.js' );
67

78

lib/node_modules/@stdlib/regexp/native-function/examples/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
/* eslint-disable no-restricted-syntax, no-empty-function */
1+
/* eslint-disable no-restricted-syntax, no-empty-function, require-jsdoc, vars-on-top */
22
'use strict';
33

4+
var Int8Array = require( '@stdlib/array/int8' );
45
var RE_NATIVE_FUNCTION = require( './../lib' );
56

67
function isNativeFunction( fcn ) {

lib/node_modules/@stdlib/regexp/native-function/test/test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
// MODULES //
55

66
var tape = require( 'tape' );
7+
var Int8Array = require( '@stdlib/array/int8' );
78
var RE_NATIVE_FUNCTION = require( './../lib' );
89

910

0 commit comments

Comments
 (0)