mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-25 17:06:52 +01:00
12 lines
287 B
JavaScript
Generated
12 lines
287 B
JavaScript
Generated
'use strict';
|
|
|
|
var toPrimitive = require('es-to-primitive/es2015');
|
|
|
|
// https://ecma-international.org/ecma-262/6.0/#sec-toprimitive
|
|
|
|
module.exports = function ToPrimitive(input) {
|
|
if (arguments.length > 1) {
|
|
return toPrimitive(input, arguments[1]);
|
|
}
|
|
return toPrimitive(input);
|
|
};
|