Skip to content
Snippets Groups Projects
primitive-symbols.js 423 B
Newer Older
  • Learn to ignore specific revisions
  • // Copyright (C) 2015 Jordan Harband. All rights reserved.
    // This code is governed by the BSD license found in the LICENSE file.
    
    /*---
    description: Object.entries accepts Symbol primitives.
    
    author: Jordan Harband
    features: [Symbol]
    ---*/
    
    var result = Object.entries(Symbol());
    
    assert.sameValue(Array.isArray(result), true, 'result is an array');
    assert.sameValue(result.length, 0, 'result has 0 items');