arcade-physics
Version:
Use Arcade Physics without Phaser.
19 lines • 610 B
TypeScript
export default RemoveAt;
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Takes a string and removes the character at the given index.
*
* @function Phaser.Utils.String.RemoveAt
* @since 3.50.0
*
* @param {string} string - The string to be worked on.
* @param {number} index - The index of the character to be removed.
*
* @return {string} The modified string.
*/
declare function RemoveAt(string: string, index: number): string;
//# sourceMappingURL=RemoveAt.d.ts.map