reflect.ownkeys
Version:
ES2015 spec-compliant shim for Reflect.ownKeys
23 lines (17 loc) • 684 B
JavaScript
;
var ownKeys = require('../implementation');
var callBind = require('call-bind');
var test = require('tape');
var hasStrictMode = require('has-strict-mode')();
var runTests = require('./tests');
var $Reflect = typeof Reflect === 'undefined' ? null : Reflect;
test('as a function', function (t) {
t.test('bad array/this value', { skip: !hasStrictMode }, function (st) {
/* eslint no-useless-call: 0 */
st['throws'](function () { ownKeys.call(undefined); }, TypeError, 'undefined is not an object');
st['throws'](function () { ownKeys.call(null); }, TypeError, 'null is not an object');
st.end();
});
runTests(callBind(ownKeys, $Reflect), t);
t.end();
});