Skip to content
Permalink
Newer
Older
100644 7 lines (5 sloc) 202 Bytes
Ignoring revisions in .git-blame-ignore-revs.
1
'use strict';
2
3
// https://262.ecma-international.org/6.0/#sec-ispropertykey
4
5
module.exports = function IsPropertyKey(argument) {
6
return typeof argument === 'string' || typeof argument === 'symbol';
7
};