2.2.1 • Published 6 years ago
to-object-x v2.2.1
to-object-x
ES6-compliant shim for ToObject.
See: 7.1.13 ToObject ( argument )
module.exports(value) ⇒ Object ⏏
The abstract operation ToObject converts argument to a value of type Object.
Kind: Exported function
Returns: Object - The value converted to an object.
Throws:
- TypeError If
valueis anullorundefined.
| Param | Type | Description |
|---|---|---|
| value | * | The value to convert. |
Example
import toObject from 'to-object-x';
toObject(); // TypeError
toObject(null); // TypeError
console.log(toObject('abc')); // Object('abc')
console.log(toObject(true)); // Object(true)
console.log(toObject(Symbol('foo'))); // Object(Symbol('foo'))2.2.1
6 years ago
2.2.0
6 years ago
2.1.0
6 years ago
2.0.21
7 years ago
2.0.20
7 years ago
2.0.19
7 years ago
2.0.18
7 years ago
2.0.17
7 years ago
2.0.16
7 years ago
2.0.15
7 years ago
2.0.14
7 years ago
2.0.13
7 years ago
2.0.12
7 years ago
2.0.11
7 years ago
2.0.10
7 years ago
2.0.9
7 years ago
2.0.8
7 years ago
2.0.7
7 years ago
2.0.6
7 years ago
2.0.5
7 years ago
2.0.4
7 years ago
2.0.3
7 years ago
2.0.2
7 years ago
2.0.1
7 years ago
2.0.0
7 years ago
1.5.0
8 years ago
1.4.1
8 years ago
1.4.0
9 years ago
1.3.0
9 years ago
1.2.1
9 years ago
1.2.0
9 years ago
1.1.1
9 years ago
1.1.0
9 years ago
1.0.5
10 years ago
1.0.4
10 years ago
1.0.3
10 years ago
1.0.2
10 years ago
1.0.1
10 years ago
1.0.0
10 years ago