3.1.2 • Published 7 years ago
to-property-key-x v3.1.2
to-property-key-x
Converts argument to a value that can be used as a property key.
Version: 2.0.2
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750
module.exports(argument) ⇒ string | symbol ⏏
This method Converts argument to a value that can be used as a property key.
Kind: Exported function
Returns: string | symbol - The converted argument.
Throws:
- TypeError If argument is not a symbol and is not coercible to a string.
| Param | Type | Description |
|---|---|---|
| argument | * | The argument to onvert to a property key. |
Example
import toPropertyKey from 'to-property-key-x';
console.log(toPropertyKey()); // 'undefined'
console.log(toPropertyKey(1)); // '1'
console.log(toPropertyKey(true)); // 'true'
const symbol = Symbol('a');
console.log(toPropertyKey(symbol)); // symbol
toPropertyKey(Object.create(null)); // TypeError3.1.2
7 years ago
3.1.1
7 years ago
3.1.0
7 years ago
3.0.20
7 years ago
3.0.19
7 years ago
3.0.18
7 years ago
3.0.17
7 years ago
3.0.16
7 years ago
3.0.15
7 years ago
3.0.14
7 years ago
3.0.13
7 years ago
3.0.12
7 years ago
3.0.11
7 years ago
3.0.10
7 years ago
3.0.9
7 years ago
3.0.8
7 years ago
3.0.7
7 years ago
3.0.6
7 years ago
3.0.5
7 years ago
3.0.4
7 years ago
3.0.3
7 years ago
3.0.2
7 years ago
3.0.1
7 years ago
3.0.0
7 years ago
2.0.2
9 years ago
2.0.1
9 years ago
2.0.0
9 years ago
1.0.0
9 years ago