phaser/v3/typings/utils/string/Reverse.d.ts

10 lines
336 B
TypeScript
Raw Normal View History

2017-01-16 21:43:07 +00:00
/**
* Takes the given string and reverses it, returning the reversed string.
* For example if given the string `Atari 520ST` it would return `TS025 iratA`.
*
* @method Phaser.Utils.reverseString
* @param {string} string - The string to be reversed.
* @return {string} The reversed string.
*/
export default function (string: any): any;