Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/es-abstract/2015/IsPropertyKey.js
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

10 lines
223 B
JavaScript

'use strict';
var isPropertyKey = require('../helpers/isPropertyKey');
// https://262.ecma-international.org/6.0/#sec-ispropertykey
module.exports = function IsPropertyKey(argument) {
return isPropertyKey(argument);
};