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.
jQuery.isPlainObject(localStorage)
1 parent 91850ec commit ce6c83fCopy full SHA for ce6c83f
test/unit/core.js
@@ -382,6 +382,12 @@ QUnit[ typeof Symbol === "function" ? "test" : "skip" ]( "isPlainObject(Symbol)"
382
assert.equal( jQuery.isPlainObject( Object( Symbol() ) ), false, "Symbol inside an object" );
383
} );
384
385
+QUnit.test( "isPlainObject(localStorage)", function( assert ) {
386
+ assert.expect( 1 );
387
+
388
+ assert.equal( jQuery.isPlainObject( localStorage ), false );
389
+} );
390
391
QUnit[ "assign" in Object ? "test" : "skip" ]( "isPlainObject(Object.assign(...))",
392
function( assert ) {
393
assert.expect( 1 );
0 commit comments