We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bea073a commit f750e12Copy full SHA for f750e12
lib/node_modules/@stdlib/object/assign/test/test.builtin.js
@@ -31,7 +31,7 @@ var assign = require( './../lib/builtin.js' );
31
var opts = {
32
'skip': ( typeof Object.assign === 'undefined' ) // eslint-disable-line node/no-unsupported-features/es-builtins
33
};
34
-var optsSymbool = {
+var optsSymbol = {
35
'skip': opts.skip || !hasSymbolSupport()
36
37
@@ -107,7 +107,7 @@ tape( 'the function assigns enumerable own properties of one or more source obje
107
t.end();
108
});
109
110
-tape( 'the function copies symbol-typed properties', optsSymbool, function test( t ) {
+tape( 'the function copies symbol-typed properties', optsSymbol, function test( t ) {
111
var expected;
112
var obj1;
113
var obj2;
0 commit comments