* @static replaceVariables - Recursively replace all occurrences of * {{variable_name}} with the actual value for that variable name on the * storage object. * * @param {string} statement - The text where to interpolate the variables * * @returns {string} - The text with the interp
(statement: string)
| 1721 | * @returns {string} - The text with the interpolated variables |
| 1722 | */ |
| 1723 | static replaceVariables (statement: string): string { |
| 1724 | return _replaceVariables (this.asEngine (), statement); |
| 1725 | } |
| 1726 | |
| 1727 | /** |
| 1728 | * @static saveTo - Save the current game state into a given Slot |
no test coverage detected