@wtasnorg/node-lib / cloneString
cloneString(
s):string
Defined in: src/strings.ts:132
Clone returns a string with the same contents as s.
string
Input string.
string
A string with the same contents as s.
clone("hello"); // "hello"
clone(""); // ""