6 lines
67 B
JavaScript
6 lines
67 B
JavaScript
|
function copy(str) {
|
||
|
copy.lastStr = str;
|
||
|
}
|
||
|
|
||
|
export default copy;
|