ID:2406672
 
Applies to:Dream Maker
Status: Open

Issue hasn't been assigned a status value.
It would help keep code simple if text2path behaved like text2num, passing through values that are already the desired type.

// Current:
text2num("10") // -> 10
text2num( 10 ) // -> 10

text2path("/obj") // -> /obj
text2path( /obj ) // -> null

// Desired:
text2path( /obj ) // -> /obj