
String To Lowercase
Downloads: 30
Download Description
Converts a String to Lowercase
//
// StringToLowercase.ts
// Converts a String to lowercase
// Written by @Fusedthreed – https://FusedThreeD.com
//
@customNode()
export class StringToLowercase extends BasicScriptNode{
@input()
In :string;
@output()
Out : string;
execute() {
this.Out = this.In.toLocaleLowerCase();
}
}