mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 18:39:31 +08:00
14 lines
317 B
Text
14 lines
317 B
Text
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
|
|
var $Object = GetIntrinsic('%Object%');
|
|
|
|
var CheckObjectCoercible = require('./CheckObjectCoercible');
|
|
|
|
// http://262.ecma-international.org/5.1/#sec-9.9
|
|
|
|
module.exports = function ToObject(value) {
|
|
CheckObjectCoercible(value);
|
|
return $Object(value);
|
|
};
|