All @lilith/* packages should publish to forge.nasty.sh only. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
|
|
var $String = GetIntrinsic('%String%');
|
|
|
|
// http://262.ecma-international.org/5.1/#sec-9.8
|
|
|
|
module.exports = function ToString(value) {
|
|
return $String(value);
|
|
};
|
|
|