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