summaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es7.object.values.js
blob: 42abd640b0f3eb6e7bc8827e97cf497813d5f23f (plain)
1
2
3
4
5
6
7
8
9
// https://github.com/tc39/proposal-object-values-entries
var $export = require('./_export')
  , $values = require('./_object-to-array')(false);

$export($export.S, 'Object', {
  values: function values(it){
    return $values(it);
  }
});