Skip to content

Commit 3d87caf

Browse files
committed
Auto-generated commit
1 parent 5044099 commit 3d87caf

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ bool = isSymbolArray( [ 'beep', 'boop' ] );
8080
Tests if a `value` is an array-like object containing only [`symbol`][mdn-symbol] primitives.
8181

8282
```javascript
83+
var Object = require( '@stdlib/object-ctor' );
8384
var Symbol = require( '@stdlib/symbol-ctor' );
8485

8586
var bool = isSymbolArray.primitives( [ Symbol( 'beep' ), Symbol( 'boop' ) ] );
@@ -94,6 +95,7 @@ bool = isSymbolArray.primitives( [ Symbol( 'beep' ), Object( Symbol( 'boop' ) )
9495
Tests if a `value` is an array-like object containing only [`Symbol`][mdn-symbol] objects.
9596

9697
```javascript
98+
var Object = require( '@stdlib/object-ctor' );
9799
var Symbol = require( '@stdlib/symbol-ctor' );
98100

99101
var bool = isSymbolArray.objects( [ Object( Symbol( 'beep' ) ), Object( Symbol( 'boop' ) ) ] );

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"devDependencies": {
4545
"@stdlib/assert-has-symbol-support": "^0.1.1",
4646
"@stdlib/assert-is-boolean": "^0.1.1",
47-
"@stdlib/bench": "^0.1.0",
47+
"@stdlib/bench": "^0.2.0",
4848
"@stdlib/math-base-special-pow": "^0.1.0",
4949
"@stdlib/object-ctor": "^0.1.1",
5050
"@stdlib/symbol-ctor": "^0.1.1",

0 commit comments

Comments
 (0)