mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
15 lines
322 B
JavaScript
15 lines
322 B
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
|
|
var $Object = GetIntrinsic('%Object%');
|
|
|
|
var CheckObjectCoercible = require('./CheckObjectCoercible');
|
|
|
|
// http://ecma-international.org/ecma-262/5.1/#sec-9.9
|
|
|
|
module.exports = function ToObject(value) {
|
|
CheckObjectCoercible(value);
|
|
return $Object(value);
|
|
};
|