mirror of
https://github.com/actions/setup-node.git
synced 2025-07-26 16:38:23 +02:00
10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
// Build out our basic SafeString type
|
|
function SafeString(string) {
|
|
this.string = string;
|
|
}
|
|
|
|
SafeString.prototype.toString = SafeString.prototype.toHTML = function() {
|
|
return '' + this.string;
|
|
};
|
|
|
|
export default SafeString;
|