paradiego

This commit is contained in:
2024-09-18 13:34:19 -03:00
commit 3f0e204289
12510 changed files with 1486101 additions and 0 deletions

13
node_modules/es-abstract/2023/thisStringValue.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
var $StringValueOf = require('call-bind/callBound')('String.prototype.valueOf');
// https://262.ecma-international.org/6.0/#sec-properties-of-the-string-prototype-object
module.exports = function thisStringValue(value) {
if (typeof value === 'string') {
return value;
}
return $StringValueOf(value);
};