Fixed
Details
Details
Assignee
Unassigned
UnassignedReporter
Imported User 83
Imported User 83New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
Created 10 February 2015 at 14:09
Updated 21 May 2024 at 23:16
Resolved 21 May 2024 at 23:16
Add the ability to extend member functions with your own functions.
For instance we know that the String object has methods such as
var myString = "Some string".lcase(); var myOtherString = "Some other string".ucase(); ``` I would be nice to be able to extend the String object with custom member functions and share those function in one central location for the entire Lucee server. ``` #!coldfusion "My alien string".huminize();