Files
2026-DEV-BUT3/node_modules/es-abstract/2021/IsPropertyKey.js
T

10 lines
223 B
JavaScript
Raw Normal View History

2026-04-25 15:28:39 +02:00
'use strict';
var isPropertyKey = require('../helpers/isPropertyKey');
// https://262.ecma-international.org/6.0/#sec-ispropertykey
module.exports = function IsPropertyKey(argument) {
return isPropertyKey(argument);
};